#[non_exhaustive]pub struct GetAccessTokenOutput {
pub access_token: Option<String>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.access_token: Option<String>Temporary access token.
Implementations§
source§impl GetAccessTokenOutput
impl GetAccessTokenOutput
sourcepub fn access_token(&self) -> Option<&str>
pub fn access_token(&self) -> Option<&str>
Temporary access token.
source§impl GetAccessTokenOutput
impl GetAccessTokenOutput
sourcepub fn builder() -> GetAccessTokenOutputBuilder
pub fn builder() -> GetAccessTokenOutputBuilder
Creates a new builder-style object to manufacture GetAccessTokenOutput.
Trait Implementations§
source§impl Clone for GetAccessTokenOutput
impl Clone for GetAccessTokenOutput
source§fn clone(&self) -> GetAccessTokenOutput
fn clone(&self) -> GetAccessTokenOutput
Returns a copy 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 GetAccessTokenOutput
impl Debug for GetAccessTokenOutput
source§impl PartialEq<GetAccessTokenOutput> for GetAccessTokenOutput
impl PartialEq<GetAccessTokenOutput> for GetAccessTokenOutput
source§fn eq(&self, other: &GetAccessTokenOutput) -> bool
fn eq(&self, other: &GetAccessTokenOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetAccessTokenOutput
impl RequestId for GetAccessTokenOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetAccessTokenOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetAccessTokenOutput
impl Send for GetAccessTokenOutput
impl Sync for GetAccessTokenOutput
impl Unpin for GetAccessTokenOutput
impl UnwindSafe for GetAccessTokenOutput
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