pub struct OrgProfile {
pub name: Option<String>,
pub full_name: Option<String>,
pub charter_org_name: Option<String>,
pub charter_exp_date: Option<String>,
pub charter_status: Option<String>,
}Expand description
Organization profile information.
Fields§
§name: Option<String>§full_name: Option<String>§charter_org_name: Option<String>§charter_exp_date: Option<String>§charter_status: Option<String>Trait Implementations§
Source§impl Clone for OrgProfile
impl Clone for OrgProfile
Source§fn clone(&self) -> OrgProfile
fn clone(&self) -> OrgProfile
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 OrgProfile
impl Debug for OrgProfile
Source§impl Default for OrgProfile
impl Default for OrgProfile
Source§fn default() -> OrgProfile
fn default() -> OrgProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrgProfile
impl<'de> Deserialize<'de> for OrgProfile
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
Auto Trait Implementations§
impl Freeze for OrgProfile
impl RefUnwindSafe for OrgProfile
impl Send for OrgProfile
impl Sync for OrgProfile
impl Unpin for OrgProfile
impl UnsafeUnpin for OrgProfile
impl UnwindSafe for OrgProfile
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