pub struct InviteSent {
pub id: Option<String>,
pub data: Option<Data>,
}
Expand description
The details for events with this type
.
Fields§
§id: Option<String>
The ID of the invite.
data: Option<Data>
The payload used to create the invite.
Implementations§
Trait Implementations§
Source§impl Clone for InviteSent
impl Clone for InviteSent
Source§fn clone(&self) -> InviteSent
fn clone(&self) -> InviteSent
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 InviteSent
impl Debug for InviteSent
Source§impl Default for InviteSent
impl Default for InviteSent
Source§fn default() -> InviteSent
fn default() -> InviteSent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InviteSent
impl<'de> Deserialize<'de> for InviteSent
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 InviteSent
impl PartialEq for InviteSent
Source§impl Serialize for InviteSent
impl Serialize for InviteSent
impl StructuralPartialEq for InviteSent
Auto Trait Implementations§
impl Freeze for InviteSent
impl RefUnwindSafe for InviteSent
impl Send for InviteSent
impl Sync for InviteSent
impl Unpin for InviteSent
impl UnwindSafe for InviteSent
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