pub struct UserProfile {Show 14 fields
pub handle: Box<str>,
pub first_name: Option<Box<str>>,
pub last_name: Option<Box<str>>,
pub country: Option<Box<str>>,
pub city: Option<Box<str>>,
pub organization: Option<Box<str>>,
pub rank: Option<Box<str>>,
pub rating: Option<i32>,
pub max_rank: Option<Box<str>>,
pub max_rating: Option<i32>,
pub contribution: i32,
pub friend_of_count: u32,
pub registration_time_seconds: i64,
pub last_online_time_seconds: i64,
}Expand description
Public account information returned by user.info
Fields§
§handle: Box<str>§first_name: Option<Box<str>>§last_name: Option<Box<str>>§country: Option<Box<str>>§city: Option<Box<str>>§organization: Option<Box<str>>§rank: Option<Box<str>>§rating: Option<i32>§max_rank: Option<Box<str>>§max_rating: Option<i32>§contribution: i32§friend_of_count: u32§registration_time_seconds: i64§last_online_time_seconds: i64Trait Implementations§
Source§impl Debug for UserProfile
impl Debug for UserProfile
impl Eq for UserProfile
Source§impl PartialEq for UserProfile
impl PartialEq for UserProfile
impl StructuralPartialEq for UserProfile
Auto Trait Implementations§
impl Freeze for UserProfile
impl RefUnwindSafe for UserProfile
impl Send for UserProfile
impl Sync for UserProfile
impl Unpin for UserProfile
impl UnsafeUnpin for UserProfile
impl UnwindSafe for UserProfile
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more