pub struct SummaryAthlete {Show 14 fields
pub id: Option<i64>,
pub resource_state: Option<i32>,
pub firstname: Option<String>,
pub lastname: Option<String>,
pub profile_medium: Option<String>,
pub profile: Option<String>,
pub city: Option<String>,
pub state: Option<String>,
pub country: Option<String>,
pub sex: Option<String>,
pub premium: Option<bool>,
pub summit: Option<bool>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
}Fields§
§id: Option<i64>§resource_state: Option<i32>§firstname: Option<String>§lastname: Option<String>§profile_medium: Option<String>§profile: Option<String>§city: Option<String>§state: Option<String>§country: Option<String>§sex: Option<String>👎Deprecated:
§Use summit instead
summit: Option<bool>§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for SummaryAthlete
impl Clone for SummaryAthlete
Source§fn clone(&self) -> SummaryAthlete
fn clone(&self) -> SummaryAthlete
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SummaryAthlete
impl Debug for SummaryAthlete
Source§impl<'de> Deserialize<'de> for SummaryAthlete
impl<'de> Deserialize<'de> for SummaryAthlete
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SummaryAthlete
impl PartialEq for SummaryAthlete
Source§impl Serialize for SummaryAthlete
impl Serialize for SummaryAthlete
impl StructuralPartialEq for SummaryAthlete
Auto Trait Implementations§
impl Freeze for SummaryAthlete
impl RefUnwindSafe for SummaryAthlete
impl Send for SummaryAthlete
impl Sync for SummaryAthlete
impl Unpin for SummaryAthlete
impl UnsafeUnpin for SummaryAthlete
impl UnwindSafe for SummaryAthlete
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