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