pub struct AccountView {
pub deactivated_at: Option<Datetime>,
pub did: Did,
pub email: Option<String>,
pub email_confirmed_at: Option<Datetime>,
pub handle: Handle,
pub indexed_at: Datetime,
pub invite_note: Option<String>,
pub invited_by: Option<InviteCode>,
pub invites: Option<Vec<InviteCode>>,
pub invites_disabled: Option<bool>,
pub related_records: Option<Vec<Value>>,
pub threat_signatures: Option<Vec<ThreatSignature>>,
}Fields§
§deactivated_at: Option<Datetime>§did: Did§email: Option<String>§email_confirmed_at: Option<Datetime>§handle: Handle§indexed_at: Datetime§invite_note: Option<String>§invited_by: Option<InviteCode>§invites: Option<Vec<InviteCode>>§invites_disabled: Option<bool>§threat_signatures: Option<Vec<ThreatSignature>>Trait Implementations§
Source§impl Clone for AccountView
impl Clone for AccountView
Source§fn clone(&self) -> AccountView
fn clone(&self) -> AccountView
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 AccountView
impl Debug for AccountView
Source§impl<'de> Deserialize<'de> for AccountView
impl<'de> Deserialize<'de> for AccountView
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 AccountView
impl RefUnwindSafe for AccountView
impl Send for AccountView
impl Sync for AccountView
impl Unpin for AccountView
impl UnsafeUnpin for AccountView
impl UnwindSafe for AccountView
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