pub struct ListInvitesResponse {
pub items: Option<Vec<Invite>>,
pub invites: Option<Vec<Invite>>,
pub total: Option<i64>,
}Expand description
ListInvitesResponse model.
Fields§
§items: Option<Vec<Invite>>§invites: Option<Vec<Invite>>Legacy alias for items. Will be removed in API v1.x.
total: Option<i64>Trait Implementations§
Source§impl Clone for ListInvitesResponse
impl Clone for ListInvitesResponse
Source§fn clone(&self) -> ListInvitesResponse
fn clone(&self) -> ListInvitesResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListInvitesResponse
impl Debug for ListInvitesResponse
Source§impl Default for ListInvitesResponse
impl Default for ListInvitesResponse
Source§fn default() -> ListInvitesResponse
fn default() -> ListInvitesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListInvitesResponse
impl<'de> Deserialize<'de> for ListInvitesResponse
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 ListInvitesResponse
impl PartialEq for ListInvitesResponse
Source§impl Serialize for ListInvitesResponse
impl Serialize for ListInvitesResponse
impl StructuralPartialEq for ListInvitesResponse
Auto Trait Implementations§
impl Freeze for ListInvitesResponse
impl RefUnwindSafe for ListInvitesResponse
impl Send for ListInvitesResponse
impl Sync for ListInvitesResponse
impl Unpin for ListInvitesResponse
impl UnsafeUnpin for ListInvitesResponse
impl UnwindSafe for ListInvitesResponse
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