[][src]Struct mojang_api::ClientLoginResponse

pub struct ClientLoginResponse {
    pub access_token: String,
    pub user: User,
    pub profile: SelectedProfile,
}

Represents the response received from the client authentication endpoint.

The response includes an access token, used for client-side authentication, as well as information about the user which was authenticated.

Fields

access_token: String

The access token which can later be used for client-side authentication when logging into a server.

user: User

Contains information about the user which authenticated.

profile: SelectedProfile

Contains information about the user profile.

Trait Implementations

impl Clone for ClientLoginResponse[src]

impl Debug for ClientLoginResponse[src]

impl<'de> Deserialize<'de> for ClientLoginResponse[src]

impl Eq for ClientLoginResponse[src]

impl PartialEq<ClientLoginResponse> for ClientLoginResponse[src]

impl Serialize for ClientLoginResponse[src]

impl StructuralEq for ClientLoginResponse[src]

impl StructuralPartialEq for ClientLoginResponse[src]

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,