pub struct IdTokenRequest {
pub refresh_token: String,
}
Expand description
Request for get ID Token (/token/auth_refresh)
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 Clone for IdTokenRequest
impl Clone for IdTokenRequest
Source§fn clone(&self) -> IdTokenRequest
fn clone(&self) -> IdTokenRequest
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 IdTokenRequest
impl Debug for IdTokenRequest
Auto Trait Implementations§
impl Freeze for IdTokenRequest
impl RefUnwindSafe for IdTokenRequest
impl Send for IdTokenRequest
impl Sync for IdTokenRequest
impl Unpin for IdTokenRequest
impl UnwindSafe for IdTokenRequest
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