#[non_exhaustive]pub enum LeaveReason {
LostConnection,
}
Expand description
This is the optional value for an empty membership event content:
CallMemberEventContent::Empty
.
It is used when the user disconnected and a Future (MSC4140) was used to update the membership after the client was not reachable anymore.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
LostConnection
The user left the call by losing network connection or closing
the client before it was able to send the leave event.
Implementations§
Trait Implementations§
source§impl AsRef<str> for LeaveReason
impl AsRef<str> for LeaveReason
source§impl Clone for LeaveReason
impl Clone for LeaveReason
source§fn clone(&self) -> LeaveReason
fn clone(&self) -> LeaveReason
Returns a copy 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 LeaveReason
impl Debug for LeaveReason
source§impl<'de> Deserialize<'de> for LeaveReason
impl<'de> Deserialize<'de> for LeaveReason
source§fn deserialize<D>(
deserializer: D,
) -> Result<LeaveReason, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<LeaveReason, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for LeaveReason
impl Display for LeaveReason
source§impl<T> From<T> for LeaveReason
impl<T> From<T> for LeaveReason
source§fn from(s: T) -> LeaveReason
fn from(s: T) -> LeaveReason
Converts to this type from the input type.
source§impl PartialEq for LeaveReason
impl PartialEq for LeaveReason
source§fn eq(&self, other: &LeaveReason) -> bool
fn eq(&self, other: &LeaveReason) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LeaveReason
impl Serialize for LeaveReason
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for LeaveReason
Auto Trait Implementations§
impl Freeze for LeaveReason
impl RefUnwindSafe for LeaveReason
impl Send for LeaveReason
impl Sync for LeaveReason
impl Unpin for LeaveReason
impl UnwindSafe for LeaveReason
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,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)