pub struct DtoUserForSelf {Show 16 fields
pub locked: Option<bool>,
pub id: Option<String>,
pub updated_name_at: Option<String>,
pub created_at: Option<String>,
pub verified: Option<i64>,
pub next_updated_name_at: Option<String>,
pub verified_expire_in: Option<String>,
pub username: Option<String>,
pub type: Option<Value>,
pub email: Option<String>,
pub editable: Option<Value>,
pub freeze: Option<bool>,
pub nickname: Option<String>,
pub language: Option<String>,
pub updated_nick_at: Option<String>,
pub avatar: Option<String>,
}
Expand description
DtoUserForSelf 模型
Fields§
§locked: Option<bool>
§id: Option<String>
§updated_name_at: Option<String>
§created_at: Option<String>
§verified: Option<i64>
§next_updated_name_at: Option<String>
§verified_expire_in: Option<String>
§username: Option<String>
§type: Option<Value>
§email: Option<String>
§editable: Option<Value>
§freeze: Option<bool>
§nickname: Option<String>
§language: Option<String>
§updated_nick_at: Option<String>
§avatar: Option<String>
Trait Implementations§
Source§impl Clone for DtoUserForSelf
impl Clone for DtoUserForSelf
Source§fn clone(&self) -> DtoUserForSelf
fn clone(&self) -> DtoUserForSelf
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 DtoUserForSelf
impl Debug for DtoUserForSelf
Source§impl<'de> Deserialize<'de> for DtoUserForSelf
impl<'de> Deserialize<'de> for DtoUserForSelf
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 DtoUserForSelf
impl RefUnwindSafe for DtoUserForSelf
impl Send for DtoUserForSelf
impl Sync for DtoUserForSelf
impl Unpin for DtoUserForSelf
impl UnwindSafe for DtoUserForSelf
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