[][src]Struct rvk::objects::group::Group

pub struct Group {
    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>,
}

Fields

id: Integername: Stringscreen_name: Stringis_closed: Integerdeactivated: Stringis_admin: Option<Integer>admin_level: Option<Integer>is_member: Option<Integer>invited_by: Option<Integer>type_: Stringphoto_50: Stringphoto_100: Stringphoto_200: Stringactivity: 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_hidden_from_feed: 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

impl Clone for Group[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Group[src]

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

Auto Trait Implementations

impl Send for Group

impl Sync for Group

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T