pub struct ListInvitationsResponse {
pub invitations: Option<Vec<Invitation>>,
pub next_token: Option<String>,
}
Fields§
§invitations: Option<Vec<Invitation>>
The details of the invitations returned by the operation.
next_token: Option<String>
The pagination token to use to request the next page of results.
Trait Implementations§
Source§impl Clone for ListInvitationsResponse
impl Clone for ListInvitationsResponse
Source§fn clone(&self) -> ListInvitationsResponse
fn clone(&self) -> ListInvitationsResponse
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 ListInvitationsResponse
impl Debug for ListInvitationsResponse
Source§impl Default for ListInvitationsResponse
impl Default for ListInvitationsResponse
Source§fn default() -> ListInvitationsResponse
fn default() -> ListInvitationsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListInvitationsResponse
impl<'de> Deserialize<'de> for ListInvitationsResponse
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 ListInvitationsResponse
impl PartialEq for ListInvitationsResponse
impl StructuralPartialEq for ListInvitationsResponse
Auto Trait Implementations§
impl Freeze for ListInvitationsResponse
impl RefUnwindSafe for ListInvitationsResponse
impl Send for ListInvitationsResponse
impl Sync for ListInvitationsResponse
impl Unpin for ListInvitationsResponse
impl UnwindSafe for ListInvitationsResponse
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