#[non_exhaustive]pub struct GetPartnerAccountOutput {
pub sidewalk: Option<SidewalkAccountInfoWithFingerprint>,
pub account_linked: bool,
/* 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.sidewalk: Option<SidewalkAccountInfoWithFingerprint>The Sidewalk account credentials.
account_linked: boolWhether the partner account is linked to the AWS account.
Implementations§
source§impl GetPartnerAccountOutput
impl GetPartnerAccountOutput
sourcepub fn sidewalk(&self) -> Option<&SidewalkAccountInfoWithFingerprint>
pub fn sidewalk(&self) -> Option<&SidewalkAccountInfoWithFingerprint>
The Sidewalk account credentials.
sourcepub fn account_linked(&self) -> bool
pub fn account_linked(&self) -> bool
Whether the partner account is linked to the AWS account.
source§impl GetPartnerAccountOutput
impl GetPartnerAccountOutput
sourcepub fn builder() -> GetPartnerAccountOutputBuilder
pub fn builder() -> GetPartnerAccountOutputBuilder
Creates a new builder-style object to manufacture GetPartnerAccountOutput.
Trait Implementations§
source§impl Clone for GetPartnerAccountOutput
impl Clone for GetPartnerAccountOutput
source§fn clone(&self) -> GetPartnerAccountOutput
fn clone(&self) -> GetPartnerAccountOutput
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 GetPartnerAccountOutput
impl Debug for GetPartnerAccountOutput
source§impl PartialEq for GetPartnerAccountOutput
impl PartialEq for GetPartnerAccountOutput
source§fn eq(&self, other: &GetPartnerAccountOutput) -> bool
fn eq(&self, other: &GetPartnerAccountOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetPartnerAccountOutput
impl RequestId for GetPartnerAccountOutput
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 GetPartnerAccountOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetPartnerAccountOutput
impl Send for GetPartnerAccountOutput
impl Sync for GetPartnerAccountOutput
impl Unpin for GetPartnerAccountOutput
impl UnwindSafe for GetPartnerAccountOutput
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.