[][src]Struct df_st_api::server_config::ServerInfo

pub struct ServerInfo {
    pub page_max_limit: u32,
    pub default_max_page_size: u32,
    pub base_url: String,
    pub world_id: i32,
}

Fields

page_max_limit: u32default_max_page_size: u32base_url: Stringworld_id: i32

Implementations

impl ServerInfo[src]

pub fn new(server_config: &RootConfig, api_path: &str, world_id: u32) -> Self[src]

Trait Implementations

impl Clone for ServerInfo[src]

impl Debug for ServerInfo[src]

impl Default for ServerInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for ServerInfo

impl Send for ServerInfo

impl Sync for ServerInfo

impl Unpin for ServerInfo

impl UnwindSafe for ServerInfo

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, I> AsResult<T, I> for T where
    I: Input, 

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoCollection<T> for T

impl<T> IntoSql for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,