pub struct AuthOutput {
pub complete_auth_link: Option<String>,
pub creds: Option<Box<SystemAccessCredentialsReplyObj>>,
pub expiration: Option<String>,
pub token: Option<String>,
}Fields§
§complete_auth_link: Option<String>§creds: Option<Box<SystemAccessCredentialsReplyObj>>§expiration: Option<String>§token: Option<String>Implementations§
Source§impl AuthOutput
impl AuthOutput
pub fn new() -> AuthOutput
Trait Implementations§
Source§impl Clone for AuthOutput
impl Clone for AuthOutput
Source§fn clone(&self) -> AuthOutput
fn clone(&self) -> AuthOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuthOutput
impl Debug for AuthOutput
Source§impl Default for AuthOutput
impl Default for AuthOutput
Source§fn default() -> AuthOutput
fn default() -> AuthOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthOutput
impl<'de> Deserialize<'de> for AuthOutput
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 AuthOutput
impl PartialEq for AuthOutput
Source§fn eq(&self, other: &AuthOutput) -> bool
fn eq(&self, other: &AuthOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuthOutput
impl Serialize for AuthOutput
impl StructuralPartialEq for AuthOutput
Auto Trait Implementations§
impl Freeze for AuthOutput
impl RefUnwindSafe for AuthOutput
impl Send for AuthOutput
impl Sync for AuthOutput
impl Unpin for AuthOutput
impl UnsafeUnpin for AuthOutput
impl UnwindSafe for AuthOutput
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