#[non_exhaustive]pub struct GetAppAuthorizationOutput {
pub app_authorization: Option<AppAuthorization>,
/* 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.Contains information about an app authorization.
Implementations§
source§impl GetAppAuthorizationOutput
impl GetAppAuthorizationOutput
Contains information about an app authorization.
source§impl GetAppAuthorizationOutput
impl GetAppAuthorizationOutput
sourcepub fn builder() -> GetAppAuthorizationOutputBuilder
pub fn builder() -> GetAppAuthorizationOutputBuilder
Creates a new builder-style object to manufacture GetAppAuthorizationOutput
.
Trait Implementations§
source§impl Clone for GetAppAuthorizationOutput
impl Clone for GetAppAuthorizationOutput
source§fn clone(&self) -> GetAppAuthorizationOutput
fn clone(&self) -> GetAppAuthorizationOutput
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 GetAppAuthorizationOutput
impl Debug for GetAppAuthorizationOutput
source§impl PartialEq<GetAppAuthorizationOutput> for GetAppAuthorizationOutput
impl PartialEq<GetAppAuthorizationOutput> for GetAppAuthorizationOutput
source§fn eq(&self, other: &GetAppAuthorizationOutput) -> bool
fn eq(&self, other: &GetAppAuthorizationOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetAppAuthorizationOutput
impl RequestId for GetAppAuthorizationOutput
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 GetAppAuthorizationOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetAppAuthorizationOutput
impl Send for GetAppAuthorizationOutput
impl Sync for GetAppAuthorizationOutput
impl Unpin for GetAppAuthorizationOutput
impl UnwindSafe for GetAppAuthorizationOutput
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