Struct torrust_index_backend::models::user::UserFull
source · pub struct UserFull {
pub user_id: UserId,
pub date_registered: Option<String>,
pub date_imported: Option<String>,
pub administrator: bool,
pub username: String,
pub email: String,
pub email_verified: bool,
pub bio: String,
pub avatar: String,
}
Fields§
§user_id: UserId
§date_registered: Option<String>
§date_imported: Option<String>
§administrator: bool
§username: String
§email: String
§email_verified: bool
§bio: String
§avatar: String
Trait Implementations§
source§impl<'de> Deserialize<'de> for UserFull
impl<'de> Deserialize<'de> for UserFull
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 RefUnwindSafe for UserFull
impl Send for UserFull
impl Sync for UserFull
impl Unpin for UserFull
impl UnwindSafe for UserFull
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