pub struct PrivateChangePasswordResponse {
pub access_token: String,
pub expires_in: i64,
pub refresh_token: String,
pub scope: String,
pub token_type: PrivateChangePasswordResponseTokenType,
}Fields§
§access_token: String§expires_in: i64§refresh_token: String§scope: String§token_type: PrivateChangePasswordResponseTokenTypeTrait Implementations§
Source§impl Clone for PrivateChangePasswordResponse
impl Clone for PrivateChangePasswordResponse
Source§fn clone(&self) -> PrivateChangePasswordResponse
fn clone(&self) -> PrivateChangePasswordResponse
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 Default for PrivateChangePasswordResponse
impl Default for PrivateChangePasswordResponse
Source§fn default() -> PrivateChangePasswordResponse
fn default() -> PrivateChangePasswordResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateChangePasswordResponse
impl<'de> Deserialize<'de> for PrivateChangePasswordResponse
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
Source§impl PartialEq for PrivateChangePasswordResponse
impl PartialEq for PrivateChangePasswordResponse
Source§fn eq(&self, other: &PrivateChangePasswordResponse) -> bool
fn eq(&self, other: &PrivateChangePasswordResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrivateChangePasswordResponse
Auto Trait Implementations§
impl Freeze for PrivateChangePasswordResponse
impl RefUnwindSafe for PrivateChangePasswordResponse
impl Send for PrivateChangePasswordResponse
impl Sync for PrivateChangePasswordResponse
impl Unpin for PrivateChangePasswordResponse
impl UnwindSafe for PrivateChangePasswordResponse
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