Enum LeaveReason
#[non_exhaustive]pub enum LeaveReason {
LostConnection,
}
Available on crate features
events
and unstable-msc3401
only.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§
§impl LeaveReason
impl LeaveReason
Trait Implementations§
§impl AsRef<str> for LeaveReason
impl AsRef<str> for LeaveReason
§impl Clone for LeaveReason
impl Clone for LeaveReason
§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 more§impl Debug for LeaveReason
impl Debug for LeaveReason
§impl<'de> Deserialize<'de> for LeaveReason
impl<'de> Deserialize<'de> for LeaveReason
§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
§impl Display for LeaveReason
impl Display for LeaveReason
§impl<T> From<T> for LeaveReason
impl<T> From<T> for LeaveReason
§fn from(s: T) -> LeaveReason
fn from(s: T) -> LeaveReason
Converts to this type from the input type.
§impl PartialEq for LeaveReason
impl PartialEq for LeaveReason
§impl Serialize for LeaveReason
impl Serialize for LeaveReason
§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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)