pub struct UserIdentity {
pub id: String,
pub name: String,
pub email: Option<String>,
pub image_24: Option<String>,
pub image_32: Option<String>,
pub image_48: Option<String>,
pub image_72: Option<String>,
pub image_192: Option<String>,
pub image_512: Option<String>,
}Fields§
§id: String§name: String§email: Option<String>§image_24: Option<String>§image_32: Option<String>§image_48: Option<String>§image_72: Option<String>§image_192: Option<String>§image_512: Option<String>Trait Implementations§
Source§impl Debug for UserIdentity
impl Debug for UserIdentity
Source§impl<'de> Deserialize<'de> for UserIdentity
impl<'de> Deserialize<'de> for UserIdentity
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 UserIdentity
impl RefUnwindSafe for UserIdentity
impl Send for UserIdentity
impl Sync for UserIdentity
impl Unpin for UserIdentity
impl UnwindSafe for UserIdentity
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