pub struct AadOauthTokenResult {
pub access_token: Option<String>,
pub refresh_token_cache: Option<String>,
}Expand description
Fields
access_token: Option<String>refresh_token_cache: Option<String>Implementations
Trait Implementations
sourceimpl Clone for AadOauthTokenResult
impl Clone for AadOauthTokenResult
sourcefn clone(&self) -> AadOauthTokenResult
fn clone(&self) -> AadOauthTokenResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for AadOauthTokenResult
impl Debug for AadOauthTokenResult
sourceimpl Default for AadOauthTokenResult
impl Default for AadOauthTokenResult
sourcefn default() -> AadOauthTokenResult
fn default() -> AadOauthTokenResult
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for AadOauthTokenResult
impl<'de> Deserialize<'de> for AadOauthTokenResult
sourcefn 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
sourceimpl PartialEq<AadOauthTokenResult> for AadOauthTokenResult
impl PartialEq<AadOauthTokenResult> for AadOauthTokenResult
sourcefn eq(&self, other: &AadOauthTokenResult) -> bool
fn eq(&self, other: &AadOauthTokenResult) -> bool
sourceimpl Serialize for AadOauthTokenResult
impl Serialize for AadOauthTokenResult
impl StructuralPartialEq for AadOauthTokenResult
Auto Trait Implementations
impl RefUnwindSafe for AadOauthTokenResult
impl Send for AadOauthTokenResult
impl Sync for AadOauthTokenResult
impl Unpin for AadOauthTokenResult
impl UnwindSafe for AadOauthTokenResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more