pub struct ListInvitationsOutput {
pub invitations: Option<Vec<Invitation>>,
pub next_token: Option<String>,
}Fields§
§invitations: Option<Vec<Invitation>>The invitations for the network.
next_token: Option<String>The pagination token that indicates the next set of results to retrieve.
Trait Implementations§
Source§impl Clone for ListInvitationsOutput
impl Clone for ListInvitationsOutput
Source§fn clone(&self) -> ListInvitationsOutput
fn clone(&self) -> ListInvitationsOutput
Returns a duplicate 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 ListInvitationsOutput
impl Debug for ListInvitationsOutput
Source§impl Default for ListInvitationsOutput
impl Default for ListInvitationsOutput
Source§fn default() -> ListInvitationsOutput
fn default() -> ListInvitationsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListInvitationsOutput
impl<'de> Deserialize<'de> for ListInvitationsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ListInvitationsOutput
impl PartialEq for ListInvitationsOutput
impl StructuralPartialEq for ListInvitationsOutput
Auto Trait Implementations§
impl Freeze for ListInvitationsOutput
impl RefUnwindSafe for ListInvitationsOutput
impl Send for ListInvitationsOutput
impl Sync for ListInvitationsOutput
impl Unpin for ListInvitationsOutput
impl UnwindSafe for ListInvitationsOutput
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