pub struct DetailedClub {Show 20 fields
pub id: Option<i64>,
pub resource_state: Option<i32>,
pub name: Option<String>,
pub profile_medium: Option<String>,
pub cover_photo: Option<String>,
pub cover_photo_small: Option<String>,
pub sport_type: Option<String>,
pub activity_types: Option<Vec<ActivityType>>,
pub city: Option<String>,
pub state: Option<String>,
pub country: Option<String>,
pub private: Option<bool>,
pub member_count: Option<i32>,
pub featured: Option<bool>,
pub verified: Option<bool>,
pub url: Option<String>,
pub membership: Option<String>,
pub admin: Option<bool>,
pub owner: Option<bool>,
pub following_count: Option<i32>,
}Fields§
§id: Option<i64>§resource_state: Option<i32>§name: Option<String>§profile_medium: Option<String>§cover_photo: Option<String>§cover_photo_small: Option<String>§sport_type: Option<String>👎Deprecated:
§Use activity_types instead
activity_types: Option<Vec<ActivityType>>§city: Option<String>§state: Option<String>§country: Option<String>§private: Option<bool>§member_count: Option<i32>§featured: Option<bool>§verified: Option<bool>§url: Option<String>§membership: Option<String>§admin: Option<bool>§owner: Option<bool>§following_count: Option<i32>Trait Implementations§
Source§impl Clone for DetailedClub
impl Clone for DetailedClub
Source§fn clone(&self) -> DetailedClub
fn clone(&self) -> DetailedClub
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 DetailedClub
impl Debug for DetailedClub
Source§impl<'de> Deserialize<'de> for DetailedClub
impl<'de> Deserialize<'de> for DetailedClub
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 Sendable<DetailedClub> for GetClub
impl Sendable<DetailedClub> for GetClub
fn send<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<DetailedClub, ErrorWrapper>> + Send + 'async_trait>>where
Self: 'async_trait,
Auto Trait Implementations§
impl Freeze for DetailedClub
impl RefUnwindSafe for DetailedClub
impl Send for DetailedClub
impl Sync for DetailedClub
impl Unpin for DetailedClub
impl UnsafeUnpin for DetailedClub
impl UnwindSafe for DetailedClub
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