Struct steamworks::ValidateAuthTicketResponse[][src]

pub struct ValidateAuthTicketResponse {
    pub steam_id: SteamId,
    pub response: Result<(), AuthSessionValidateError>,
    pub owner_steam_id: SteamId,
}

Called when an authentication ticket has been validated.

Fields

steam_id: SteamId

The steam id of the entity that provided the ticket

response: Result<(), AuthSessionValidateError>

The result of the validation

owner_steam_id: SteamId

The steam id of the owner of the game. Differs from steam_id if the game is borrowed.

Trait Implementations

impl Callback for ValidateAuthTicketResponse[src]

impl Debug for ValidateAuthTicketResponse[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> 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.