[][src]Struct google_people1::ContactGroup

pub struct ContactGroup {
    pub formatted_name: Option<String>,
    pub group_type: Option<String>,
    pub name: Option<String>,
    pub member_resource_names: Option<Vec<String>>,
    pub member_count: Option<i32>,
    pub etag: Option<String>,
    pub resource_name: Option<String>,
    pub metadata: Option<ContactGroupMetadata>,
}

A contact group.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

formatted_name: Option<String>

The read-only name translated and formatted in the viewer's account locale or the Accept-Language HTTP header locale for system groups names. Group names set by the owner are the same as name.

group_type: Option<String>

The read-only contact group type.

name: Option<String>

The contact group name set by the group owner or a system provided name for system groups.

member_resource_names: Option<Vec<String>>

The list of contact person resource names that are members of the contact group. The field is not populated for LIST requests and can only be updated through the ModifyContactGroupMembers.

member_count: Option<i32>

The total number of contacts in the group irrespective of max members in specified in the request.

etag: Option<String>

The HTTP entity tag of the resource. Used for web cache validation.

resource_name: Option<String>

The resource name for the contact group, assigned by the server. An ASCII string, in the form of contactGroups/contact_group_id.

metadata: Option<ContactGroupMetadata>

Metadata about the contact group.

Trait Implementations

impl Resource for ContactGroup[src]

impl ResponseResult for ContactGroup[src]

impl Default for ContactGroup[src]

impl Clone for ContactGroup[src]

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

Performs copy-assignment from source. Read more

impl Debug for ContactGroup[src]

impl Serialize for ContactGroup[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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