pub struct Organization {Show 22 fields
pub assigned_plans: Vec<AssignedPlan>,
pub business_phones: Vec<String>,
pub city: String,
pub country: String,
pub country_letter_code: String,
pub created_date_time: String,
pub display_name: String,
pub marketing_notification_emails: Vec<String>,
pub on_premises_last_sync_date_time: String,
pub on_premises_sync_enabled: bool,
pub postal_code: String,
pub preferred_language: String,
pub privacy_profile: PrivacyProfile,
pub provisioned_plans: Vec<ProvisionedPlan>,
pub security_compliance_notification_mails: Vec<String>,
pub security_compliance_notification_phones: Vec<String>,
pub state: String,
pub street: String,
pub technical_notification_mails: Vec<String>,
pub verified_domains: Vec<VerifiedDomain>,
pub mobile_device_management_authority: MdmAuthority,
pub extensions: Vec<Extension>,
}
Fields§
§assigned_plans: Vec<AssignedPlan>
§business_phones: Vec<String>
§city: String
§country: String
§country_letter_code: String
§created_date_time: String
§display_name: String
§marketing_notification_emails: Vec<String>
§on_premises_last_sync_date_time: String
§on_premises_sync_enabled: bool
§postal_code: String
§preferred_language: String
§privacy_profile: PrivacyProfile
§provisioned_plans: Vec<ProvisionedPlan>
§security_compliance_notification_mails: Vec<String>
§security_compliance_notification_phones: Vec<String>
§state: String
§street: String
§technical_notification_mails: Vec<String>
§verified_domains: Vec<VerifiedDomain>
§extensions: Vec<Extension>
Trait Implementations§
Source§impl Clone for Organization
impl Clone for Organization
Source§fn clone(&self) -> Organization
fn clone(&self) -> Organization
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 Organization
impl Debug for Organization
Source§impl<'de> Deserialize<'de> for Organization
impl<'de> Deserialize<'de> for Organization
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 PartialEq for Organization
impl PartialEq for Organization
Source§impl Serialize for Organization
impl Serialize for Organization
impl Eq for Organization
impl StructuralPartialEq for Organization
Auto Trait Implementations§
impl Freeze for Organization
impl RefUnwindSafe for Organization
impl Send for Organization
impl Sync for Organization
impl Unpin for Organization
impl UnwindSafe for Organization
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