pub struct Group {Show 49 fields
pub id: Integer,
pub name: String,
pub screen_name: String,
pub is_closed: Integer,
pub deactivated: String,
pub is_admin: Option<Integer>,
pub admin_level: Option<Integer>,
pub is_member: Option<Integer>,
pub invited_by: Option<Integer>,
pub type_: String,
pub photo_50: String,
pub photo_100: String,
pub photo_200: String,
pub activity: Option<String>,
pub age_limits: Option<Integer>,
pub ban_info: Option<BlacklistInfo>,
pub can_create_topic: Option<Integer>,
pub can_message: Option<Integer>,
pub can_post: Option<Integer>,
pub can_see_all_posts: Option<Integer>,
pub can_upload_doc: Option<Integer>,
pub can_upload_video: Option<Integer>,
pub city: Option<City>,
pub contacts: Option<Vec<Contact>>,
pub counters: Option<Counters>,
pub country: Option<Country>,
pub cover: Option<Cover>,
pub crop_photo: Option<Cropped>,
pub description: Option<String>,
pub fixed_post: Option<Integer>,
pub has_photo: Option<Integer>,
pub is_favorite: Option<Integer>,
pub is_hidden_from_feed: Option<Integer>,
pub is_messages_blocked: Option<Integer>,
pub links: Option<Vec<Link>>,
pub main_album_id: Option<Integer>,
pub main_section: Option<Integer>,
pub market: Option<Market>,
pub member_status: Option<Integer>,
pub place: Option<Place>,
pub public_date_label: Option<String>,
pub site: Option<String>,
pub start_date: Option<Integer>,
pub finish_date: Option<Integer>,
pub status: Option<String>,
pub trending: Option<Integer>,
pub verified: Option<Integer>,
pub wall: Option<Integer>,
pub wiki_page: Option<String>,
}Expand description
Fields§
§id: Integer§name: String§screen_name: String§is_closed: Integer§deactivated: String§is_admin: Option<Integer>§admin_level: Option<Integer>§is_member: Option<Integer>§invited_by: Option<Integer>§type_: String§photo_50: String§photo_100: String§photo_200: String§activity: Option<String>§age_limits: Option<Integer>§ban_info: Option<BlacklistInfo>§can_create_topic: Option<Integer>§can_message: Option<Integer>§can_post: Option<Integer>§can_see_all_posts: Option<Integer>§can_upload_doc: Option<Integer>§can_upload_video: Option<Integer>§city: Option<City>§contacts: Option<Vec<Contact>>§counters: Option<Counters>§country: Option<Country>§cover: Option<Cover>§crop_photo: Option<Cropped>§description: Option<String>§fixed_post: Option<Integer>§has_photo: Option<Integer>§is_favorite: Option<Integer>§is_messages_blocked: Option<Integer>§links: Option<Vec<Link>>§main_album_id: Option<Integer>§main_section: Option<Integer>§market: Option<Market>§member_status: Option<Integer>§place: Option<Place>§public_date_label: Option<String>§site: Option<String>§start_date: Option<Integer>§finish_date: Option<Integer>§status: Option<String>§trending: Option<Integer>§verified: Option<Integer>§wall: Option<Integer>§wiki_page: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Group
impl<'de> Deserialize<'de> for Group
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
Auto Trait Implementations§
impl Freeze for Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnsafeUnpin for Group
impl UnwindSafe for Group
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