[][src]Struct librojo::web::api::ServerInfoResponse

pub struct ServerInfoResponse<'a> {
    pub session_id: SessionId,
    pub server_version: &'a str,
    pub protocol_version: u64,
    pub expected_place_ids: Option<HashSet<u64>>,
    pub root_instance_id: RbxId,
}

Fields

session_id: SessionIdserver_version: &'a strprotocol_version: u64expected_place_ids: Option<HashSet<u64>>root_instance_id: RbxId

Trait Implementations

impl<'a> Debug for ServerInfoResponse<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for ServerInfoResponse<'a>[src]

impl<'a> Serialize for ServerInfoResponse<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ServerInfoResponse<'a>

impl<'a> Send for ServerInfoResponse<'a>

impl<'a> Sync for ServerInfoResponse<'a>

impl<'a> Unpin for ServerInfoResponse<'a>

impl<'a> UnwindSafe for ServerInfoResponse<'a>

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

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

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, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

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