pub struct DtoUsers {
pub username: Option<String>,
pub nickname: Option<String>,
pub avatar: Option<String>,
pub type: Option<Value>,
pub created_at: Option<String>,
pub email: Option<String>,
pub freeze: Option<bool>,
pub verified: Option<i64>,
pub id: Option<String>,
pub verified_expire_in: Option<String>,
pub locked: Option<bool>,
}
Expand description
DtoUsers 模型
Fields§
§username: Option<String>
§nickname: Option<String>
§avatar: Option<String>
§type: Option<Value>
§created_at: Option<String>
§email: Option<String>
§freeze: Option<bool>
§verified: Option<i64>
§id: Option<String>
§verified_expire_in: Option<String>
§locked: Option<bool>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DtoUsers
impl<'de> Deserialize<'de> for DtoUsers
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 DtoUsers
impl RefUnwindSafe for DtoUsers
impl Send for DtoUsers
impl Sync for DtoUsers
impl Unpin for DtoUsers
impl UnwindSafe for DtoUsers
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