pub struct CheckLoginResponse {
pub uuid: String,
pub head_img_url: Option<String>,
pub nick_name: Option<String>,
pub expired_time: Option<i64>,
pub status: i32,
pub login_info: Option<LoginInfo>,
}Fields§
§uuid: String§head_img_url: Option<String>§nick_name: Option<String>§expired_time: Option<i64>§status: i32§login_info: Option<LoginInfo>Trait Implementations§
Source§impl Clone for CheckLoginResponse
impl Clone for CheckLoginResponse
Source§fn clone(&self) -> CheckLoginResponse
fn clone(&self) -> CheckLoginResponse
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 CheckLoginResponse
impl Debug for CheckLoginResponse
Source§impl Default for CheckLoginResponse
impl Default for CheckLoginResponse
Source§fn default() -> CheckLoginResponse
fn default() -> CheckLoginResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckLoginResponse
impl<'de> Deserialize<'de> for CheckLoginResponse
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 CheckLoginResponse
impl RefUnwindSafe for CheckLoginResponse
impl Send for CheckLoginResponse
impl Sync for CheckLoginResponse
impl Unpin for CheckLoginResponse
impl UnwindSafe for CheckLoginResponse
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