pub struct AuthOrganization {
pub id: Option<String>,
pub title: Option<String>,
pub role: Option<String>,
pub is_default: Option<bool>,
}Fields§
§id: Option<String>§title: Option<String>§role: Option<String>§is_default: Option<bool>Trait Implementations§
Source§impl Clone for AuthOrganization
impl Clone for AuthOrganization
Source§fn clone(&self) -> AuthOrganization
fn clone(&self) -> AuthOrganization
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 AuthOrganization
impl Debug for AuthOrganization
Source§impl PartialEq for AuthOrganization
impl PartialEq for AuthOrganization
Source§fn eq(&self, other: &AuthOrganization) -> bool
fn eq(&self, other: &AuthOrganization) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuthOrganization
impl Serialize for AuthOrganization
impl Eq for AuthOrganization
impl StructuralPartialEq for AuthOrganization
Auto Trait Implementations§
impl Freeze for AuthOrganization
impl RefUnwindSafe for AuthOrganization
impl Send for AuthOrganization
impl Sync for AuthOrganization
impl Unpin for AuthOrganization
impl UnsafeUnpin for AuthOrganization
impl UnwindSafe for AuthOrganization
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