pub struct FetchAuthResponse {
pub errcode: i32,
pub errmsg: Option<String>,
pub token: Option<String>,
pub extra: IndexMap<String, Value>,
}Fields§
§errcode: i32§errmsg: Option<String>§token: Option<String>鉴权成功后台返回的 Bearer token(后续请求经 Authorization 头携带)。
extra: IndexMap<String, Value>Trait Implementations§
Source§impl Clone for FetchAuthResponse
impl Clone for FetchAuthResponse
Source§fn clone(&self) -> FetchAuthResponse
fn clone(&self) -> FetchAuthResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FetchAuthResponse
impl Debug for FetchAuthResponse
Source§impl<'de> Deserialize<'de> for FetchAuthResponse
impl<'de> Deserialize<'de> for FetchAuthResponse
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 FetchAuthResponse
impl RefUnwindSafe for FetchAuthResponse
impl Send for FetchAuthResponse
impl Sync for FetchAuthResponse
impl Unpin for FetchAuthResponse
impl UnsafeUnpin for FetchAuthResponse
impl UnwindSafe for FetchAuthResponse
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