pub struct OrganizationOwner {
pub directory_customer_id: Option<String>,
}Expand description
The entity that owns an Organization. The lifetime of the Organization and all of its descendants are bound to the OrganizationOwner. If the OrganizationOwner is deleted, the Organization and all its descendants will be deleted.
This type is not used in any activity, and only used as part of another schema.
Fields§
§directory_customer_id: Option<String>The G Suite customer id used in the Directory API.
Trait Implementations§
Source§impl Clone for OrganizationOwner
impl Clone for OrganizationOwner
Source§fn clone(&self) -> OrganizationOwner
fn clone(&self) -> OrganizationOwner
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 OrganizationOwner
impl Debug for OrganizationOwner
Source§impl Default for OrganizationOwner
impl Default for OrganizationOwner
Source§fn default() -> OrganizationOwner
fn default() -> OrganizationOwner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationOwner
impl<'de> Deserialize<'de> for OrganizationOwner
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 Serialize for OrganizationOwner
impl Serialize for OrganizationOwner
impl Part for OrganizationOwner
Auto Trait Implementations§
impl Freeze for OrganizationOwner
impl RefUnwindSafe for OrganizationOwner
impl Send for OrganizationOwner
impl Sync for OrganizationOwner
impl Unpin for OrganizationOwner
impl UnwindSafe for OrganizationOwner
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