Struct codeforces_api::responses::CFUser[][src]

pub struct CFUser {
    pub handle: String,
    pub email: Option<String>,
    pub vk_id: Option<String>,
    pub open_id: Option<String>,
    pub first_name: Option<String>,
    pub last_name: Option<String>,
    pub country: Option<String>,
    pub city: Option<String>,
    pub organization: Option<String>,
    pub contribution: i64,
    pub rank: Option<String>,
    pub rating: Option<i64>,
    pub max_rank: Option<String>,
    pub max_rating: Option<i64>,
    pub last_online_time_seconds: i64,
    pub registration_time_seconds: i64,
    pub friend_of_count: i64,
    pub avatar: String,
    pub title_photo: String,
}

Fields

handle: Stringemail: Option<String>vk_id: Option<String>open_id: Option<String>first_name: Option<String>last_name: Option<String>country: Option<String>city: Option<String>organization: Option<String>contribution: i64rank: Option<String>rating: Option<i64>max_rank: Option<String>max_rating: Option<i64>last_online_time_seconds: i64registration_time_seconds: i64friend_of_count: i64avatar: Stringtitle_photo: String

Trait Implementations

impl Clone for CFUser[src]

impl Debug for CFUser[src]

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

impl Display for CFUser[src]

impl Eq for CFUser[src]

impl PartialEq<CFUser> for CFUser[src]

impl Serialize for CFUser[src]

impl StructuralEq for CFUser[src]

impl StructuralPartialEq for CFUser[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: for<'de> 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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.