pub struct RefreshTokenRequest {
pub mail_address: String,
pub password: String,
}Expand description
Request for get Refresh Token (/token/auth_user)
See: JQuants API
§Security
While the Debug trait is implemented, the mailaddress and password is masked due to security risks.
If you wish to display it, please do so at your own responsibility.
Fields§
§mail_address: StringThe mail address.
password: StringThe password.
Trait Implementations§
Source§impl Clone for RefreshTokenRequest
impl Clone for RefreshTokenRequest
Source§fn clone(&self) -> RefreshTokenRequest
fn clone(&self) -> RefreshTokenRequest
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 RefreshTokenRequest
impl Debug for RefreshTokenRequest
Auto Trait Implementations§
impl Freeze for RefreshTokenRequest
impl RefUnwindSafe for RefreshTokenRequest
impl Send for RefreshTokenRequest
impl Sync for RefreshTokenRequest
impl Unpin for RefreshTokenRequest
impl UnwindSafe for RefreshTokenRequest
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