Struct nakama_rs::api::ApiUpdateAccountRequest[][src]

pub struct ApiUpdateAccountRequest {
    pub avatar_url: String,
    pub display_name: String,
    pub lang_tag: String,
    pub location: String,
    pub timezone: String,
    pub username: String,
}

Update a user’s account details.

Fields

avatar_url: Stringdisplay_name: Stringlang_tag: Stringlocation: Stringtimezone: Stringusername: String

Trait Implementations

impl DeJson for ApiUpdateAccountRequest[src]

impl Debug for ApiUpdateAccountRequest[src]

impl Default for ApiUpdateAccountRequest[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.