pub struct User {Show 14 fields
pub id: String,
pub email: Option<String>,
pub nickname: String,
pub status: Option<String>,
pub avatar: Option<String>,
pub created_at: String,
pub preferred_theme: Option<String>,
pub credit: Option<i32>,
pub anonymous: Option<bool>,
pub group: Option<Group>,
pub pined: Option<Vec<PinedFile>>,
pub language: Option<String>,
pub disable_view_sync: Option<bool>,
pub share_links_in_profile: Option<ShareLinksInProfileLevel>,
}Expand description
User model
Fields§
§id: String§email: Option<String>§nickname: String§status: Option<String>§avatar: Option<String>§created_at: String§preferred_theme: Option<String>§credit: Option<i32>§anonymous: Option<bool>§group: Option<Group>§pined: Option<Vec<PinedFile>>§language: Option<String>§disable_view_sync: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for User
impl<'de> Deserialize<'de> for User
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 User
impl RefUnwindSafe for User
impl Send for User
impl Sync for User
impl Unpin for User
impl UnsafeUnpin for User
impl UnwindSafe for User
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