pub struct RefreshTokenResponse {
pub refresh_token: String,
}
Expand description
Response for get Refresh Token (/token/auth_user)
See: JQuants API
§Security
While the Debug trait is implemented, the refresh_token
is masked due to security risks.
If you wish to display it, please do so at your own responsibility.
Fields§
§refresh_token: String
The refresh token.
Trait Implementations§
Source§impl Debug for RefreshTokenResponse
impl Debug for RefreshTokenResponse
Source§impl<'de> Deserialize<'de> for RefreshTokenResponse
impl<'de> Deserialize<'de> for RefreshTokenResponse
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 RefreshTokenResponse
impl RefUnwindSafe for RefreshTokenResponse
impl Send for RefreshTokenResponse
impl Sync for RefreshTokenResponse
impl Unpin for RefreshTokenResponse
impl UnwindSafe for RefreshTokenResponse
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