Struct Group

Source
pub struct Group {
Show 50 fields pub assigned_licenses: Vec<AssignedLicense>, pub classification: String, pub created_date_time: String, pub description: String, pub display_name: String, pub has_members_with_license_errors: bool, pub group_types: Vec<String>, pub license_processing_state: LicenseProcessingState, pub mail: String, pub mail_enabled: bool, pub mail_nickname: String, pub on_premises_last_sync_date_time: String, pub on_premises_provisioning_errors: Vec<OnPremisesProvisioningError>, pub on_premises_security_identifier: String, pub on_premises_sync_enabled: bool, pub preferred_data_location: String, pub proxy_addresses: Vec<String>, pub renewed_date_time: String, pub security_enabled: bool, pub visibility: String, pub allow_external_senders: bool, pub auto_subscribe_new_members: bool, pub is_subscribed_by_mail: bool, pub unseen_count: i32, pub is_archived: bool, pub members: Vec<DirectoryObject>, pub member_of: Vec<DirectoryObject>, pub members_with_license_errors: Vec<DirectoryObject>, pub transitive_members: Vec<DirectoryObject>, pub transitive_member_of: Vec<DirectoryObject>, pub created_on_behalf_of: DirectoryObject, pub owners: Vec<DirectoryObject>, pub settings: Vec<GroupSetting>, pub extensions: Vec<Extension>, pub threads: Vec<ConversationThread>, pub calendar: Calendar, pub calendar_view: Vec<Event>, pub events: Vec<Event>, pub conversations: Vec<Conversation>, pub photo: ProfilePhoto, pub photos: Vec<ProfilePhoto>, pub accepted_senders: Vec<DirectoryObject>, pub rejected_senders: Vec<DirectoryObject>, pub drive: Drive, pub drives: Vec<Drive>, pub sites: Vec<Site>, pub planner: PlannerGroup, pub onenote: Onenote, pub group_lifecycle_policies: Vec<GroupLifecyclePolicy>, pub team: Team,
}

Fields§

§assigned_licenses: Vec<AssignedLicense>§classification: String§created_date_time: String§description: String§display_name: String§has_members_with_license_errors: bool§group_types: Vec<String>§license_processing_state: LicenseProcessingState§mail: String§mail_enabled: bool§mail_nickname: String§on_premises_last_sync_date_time: String§on_premises_provisioning_errors: Vec<OnPremisesProvisioningError>§on_premises_security_identifier: String§on_premises_sync_enabled: bool§preferred_data_location: String§proxy_addresses: Vec<String>§renewed_date_time: String§security_enabled: bool§visibility: String§allow_external_senders: bool§auto_subscribe_new_members: bool§is_subscribed_by_mail: bool§unseen_count: i32§is_archived: bool§members: Vec<DirectoryObject>§member_of: Vec<DirectoryObject>§members_with_license_errors: Vec<DirectoryObject>§transitive_members: Vec<DirectoryObject>§transitive_member_of: Vec<DirectoryObject>§created_on_behalf_of: DirectoryObject§owners: Vec<DirectoryObject>§settings: Vec<GroupSetting>§extensions: Vec<Extension>§threads: Vec<ConversationThread>§calendar: Calendar§calendar_view: Vec<Event>§events: Vec<Event>§conversations: Vec<Conversation>§photo: ProfilePhoto§photos: Vec<ProfilePhoto>§accepted_senders: Vec<DirectoryObject>§rejected_senders: Vec<DirectoryObject>§drive: Drive§drives: Vec<Drive>§sites: Vec<Site>§planner: PlannerGroup§onenote: Onenote§group_lifecycle_policies: Vec<GroupLifecyclePolicy>§team: Team

Trait Implementations§

Source§

impl Clone for Group

Source§

fn clone(&self) -> Group

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Group

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Group

Source§

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 Group

Source§

fn eq(&self, other: &Group) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for Group

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for Group

Source§

impl StructuralPartialEq for Group

Auto Trait Implementations§

§

impl Freeze for Group

§

impl RefUnwindSafe for Group

§

impl Send for Group

§

impl Sync for Group

§

impl Unpin for Group

§

impl UnwindSafe for Group

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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