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