#[non_exhaustive]pub struct GetInvitationsCountOutput {
pub invitations_count: Option<i64>,
/* 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.invitations_count: Option<i64>
The total number of invitations that were received by the account, not including the currently accepted invitation.
Implementations§
source§impl GetInvitationsCountOutput
impl GetInvitationsCountOutput
sourcepub fn invitations_count(&self) -> Option<i64>
pub fn invitations_count(&self) -> Option<i64>
The total number of invitations that were received by the account, not including the currently accepted invitation.
source§impl GetInvitationsCountOutput
impl GetInvitationsCountOutput
sourcepub fn builder() -> GetInvitationsCountOutputBuilder
pub fn builder() -> GetInvitationsCountOutputBuilder
Creates a new builder-style object to manufacture GetInvitationsCountOutput
.
Trait Implementations§
source§impl Clone for GetInvitationsCountOutput
impl Clone for GetInvitationsCountOutput
source§fn clone(&self) -> GetInvitationsCountOutput
fn clone(&self) -> GetInvitationsCountOutput
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 GetInvitationsCountOutput
impl Debug for GetInvitationsCountOutput
source§impl PartialEq for GetInvitationsCountOutput
impl PartialEq for GetInvitationsCountOutput
source§fn eq(&self, other: &GetInvitationsCountOutput) -> bool
fn eq(&self, other: &GetInvitationsCountOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetInvitationsCountOutput
impl RequestId for GetInvitationsCountOutput
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 GetInvitationsCountOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetInvitationsCountOutput
impl Send for GetInvitationsCountOutput
impl Sync for GetInvitationsCountOutput
impl Unpin for GetInvitationsCountOutput
impl UnwindSafe for GetInvitationsCountOutput
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.