pub struct OrganizationSummary {
pub alias: Option<String>,
pub error_message: Option<String>,
pub organization_id: Option<String>,
pub state: Option<String>,
}Expand description
The representation of an organization.
Fields§
§alias: Option<String>The alias associated with the organization.
error_message: Option<String>The error message associated with the organization. It is only present if unexpected behavior has occurred with regards to the organization. It provides insight or solutions regarding unexpected behavior.
organization_id: Option<String>The identifier associated with the organization.
state: Option<String>The state associated with the organization.
Trait Implementations§
Source§impl Clone for OrganizationSummary
impl Clone for OrganizationSummary
Source§fn clone(&self) -> OrganizationSummary
fn clone(&self) -> OrganizationSummary
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 OrganizationSummary
impl Debug for OrganizationSummary
Source§impl Default for OrganizationSummary
impl Default for OrganizationSummary
Source§fn default() -> OrganizationSummary
fn default() -> OrganizationSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationSummary
impl<'de> Deserialize<'de> for OrganizationSummary
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 OrganizationSummary
impl PartialEq for OrganizationSummary
impl StructuralPartialEq for OrganizationSummary
Auto Trait Implementations§
impl Freeze for OrganizationSummary
impl RefUnwindSafe for OrganizationSummary
impl Send for OrganizationSummary
impl Sync for OrganizationSummary
impl Unpin for OrganizationSummary
impl UnwindSafe for OrganizationSummary
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