pub struct ExternalEventInvite {
pub invitee: ExternalUser,
pub event: Event,
pub inviter: RegisteredUser,
}Fields§
§invitee: ExternalUser§event: Event§inviter: RegisteredUserTrait Implementations§
Source§impl Clone for ExternalEventInvite
impl Clone for ExternalEventInvite
Source§fn clone(&self) -> ExternalEventInvite
fn clone(&self) -> ExternalEventInvite
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 ExternalEventInvite
impl Debug for ExternalEventInvite
Source§impl<'de> Deserialize<'de> for ExternalEventInvite
impl<'de> Deserialize<'de> for ExternalEventInvite
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
impl Eq for ExternalEventInvite
Source§impl ExampleData for ExternalEventInvite
impl ExampleData for ExternalEventInvite
Source§fn example_data() -> Self
fn example_data() -> Self
Get an example instance of the current datatype.
Source§impl From<ExternalEventInvite> for Message
impl From<ExternalEventInvite> for Message
Source§fn from(value: ExternalEventInvite) -> Self
fn from(value: ExternalEventInvite) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExternalEventInvite
impl PartialEq for ExternalEventInvite
Source§impl Serialize for ExternalEventInvite
impl Serialize for ExternalEventInvite
impl StructuralPartialEq for ExternalEventInvite
Auto Trait Implementations§
impl Freeze for ExternalEventInvite
impl RefUnwindSafe for ExternalEventInvite
impl Send for ExternalEventInvite
impl Sync for ExternalEventInvite
impl Unpin for ExternalEventInvite
impl UnsafeUnpin for ExternalEventInvite
impl UnwindSafe for ExternalEventInvite
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more