pub struct UserAggregateListItem {
pub uuid: String,
pub email: String,
pub verified: Option<bool>,
pub pending_email: Option<String>,
pub created: u64,
pub updated: u64,
pub account: Option<UserAggregateAccountSummary>,
}Fields§
§uuid: String§email: String§verified: Option<bool>§pending_email: Option<String>§created: u64§updated: u64§account: Option<UserAggregateAccountSummary>Trait Implementations§
Source§impl Clone for UserAggregateListItem
impl Clone for UserAggregateListItem
Source§fn clone(&self) -> UserAggregateListItem
fn clone(&self) -> UserAggregateListItem
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 UserAggregateListItem
impl Debug for UserAggregateListItem
Source§impl Default for UserAggregateListItem
impl Default for UserAggregateListItem
Source§fn default() -> UserAggregateListItem
fn default() -> UserAggregateListItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserAggregateListItem
impl<'de> Deserialize<'de> for UserAggregateListItem
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 UserAggregateListItem
impl PartialEq for UserAggregateListItem
Source§impl Serialize for UserAggregateListItem
impl Serialize for UserAggregateListItem
impl StructuralPartialEq for UserAggregateListItem
Auto Trait Implementations§
impl Freeze for UserAggregateListItem
impl RefUnwindSafe for UserAggregateListItem
impl Send for UserAggregateListItem
impl Sync for UserAggregateListItem
impl Unpin for UserAggregateListItem
impl UnsafeUnpin for UserAggregateListItem
impl UnwindSafe for UserAggregateListItem
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