[][src]Struct twitch_api_rs::resource::users::get_users::UserDescription

pub struct UserDescription {
    pub broadcaster_type: BroadcasterType,
    pub description: String,
    pub display_name: UserName,
    pub email: Option<UserEmail>,
    pub id: UserId,
    pub login: UserLogin,
    pub offline_image_url: Url,
    pub profile_image_url: Url,
    // some fields omitted
}

A single user datum returned by GetUsersRequest

Fields

broadcaster_type: BroadcasterTypedescription: Stringdisplay_name: UserNameemail: Option<UserEmail>

The email of the user, will only be returned if the access token provided has the scope 'user:read:email'

id: UserIdlogin: UserLoginoffline_image_url: Urlprofile_image_url: Url

Trait Implementations

impl Debug for UserDescription[src]

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

impl Serialize for UserDescription[src]

Auto Trait Implementations

impl RefUnwindSafe for UserDescription

impl Send for UserDescription

impl Sync for UserDescription

impl Unpin for UserDescription

impl UnwindSafe for UserDescription

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: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

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