pub struct OrganizationType {
pub id: String,
pub name: String,
pub description: Option<String>,
}Fields§
§id: String§name: String§description: Option<String>Trait Implementations§
Source§impl Clone for OrganizationType
impl Clone for OrganizationType
Source§fn clone(&self) -> OrganizationType
fn clone(&self) -> OrganizationType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OrganizationType
impl Debug for OrganizationType
Source§impl PartialEq for OrganizationType
impl PartialEq for OrganizationType
Source§fn eq(&self, other: &OrganizationType) -> bool
fn eq(&self, other: &OrganizationType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OrganizationType
Auto Trait Implementations§
impl Freeze for OrganizationType
impl RefUnwindSafe for OrganizationType
impl Send for OrganizationType
impl Sync for OrganizationType
impl Unpin for OrganizationType
impl UnsafeUnpin for OrganizationType
impl UnwindSafe for OrganizationType
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