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