pub struct ListWrapperAccountDataInner {
pub account_id: Uuid,
pub tenant_id: Uuid,
pub username: String,
pub realname: String,
pub user_type: UserType,
pub phone: String,
pub last_change: String,
}Expand description
ListWrapperAccountDataInner : An account that can be used to authenticate
Fields§
§account_id: UuidID of the account
tenant_id: UuidTenant this account belongs to
username: StringUsername of the account
realname: StringReal name of the account holder
user_type: UserTypeType of the account
phone: StringPhone number of the account holder
last_change: StringLast change of the account
Implementations§
Trait Implementations§
Source§impl Clone for ListWrapperAccountDataInner
impl Clone for ListWrapperAccountDataInner
Source§fn clone(&self) -> ListWrapperAccountDataInner
fn clone(&self) -> ListWrapperAccountDataInner
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 ListWrapperAccountDataInner
impl Debug for ListWrapperAccountDataInner
Source§impl Default for ListWrapperAccountDataInner
impl Default for ListWrapperAccountDataInner
Source§fn default() -> ListWrapperAccountDataInner
fn default() -> ListWrapperAccountDataInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWrapperAccountDataInner
impl<'de> Deserialize<'de> for ListWrapperAccountDataInner
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
impl StructuralPartialEq for ListWrapperAccountDataInner
Auto Trait Implementations§
impl Freeze for ListWrapperAccountDataInner
impl RefUnwindSafe for ListWrapperAccountDataInner
impl Send for ListWrapperAccountDataInner
impl Sync for ListWrapperAccountDataInner
impl Unpin for ListWrapperAccountDataInner
impl UnwindSafe for ListWrapperAccountDataInner
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