pub enum CloseSessionErrorCode {
UnknownSession,
}Expand description
Machine-readable reason for rejecting a session close request.
Variants§
UnknownSession
Trait Implementations§
Source§impl Clone for CloseSessionErrorCode
impl Clone for CloseSessionErrorCode
Source§fn clone(&self) -> CloseSessionErrorCode
fn clone(&self) -> CloseSessionErrorCode
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 moreimpl Copy for CloseSessionErrorCode
Source§impl Debug for CloseSessionErrorCode
impl Debug for CloseSessionErrorCode
Source§impl<'de> Deserialize<'de> for CloseSessionErrorCode
impl<'de> Deserialize<'de> for CloseSessionErrorCode
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 CloseSessionErrorCode
Source§impl PartialEq for CloseSessionErrorCode
impl PartialEq for CloseSessionErrorCode
Source§impl Serialize for CloseSessionErrorCode
impl Serialize for CloseSessionErrorCode
impl StructuralPartialEq for CloseSessionErrorCode
Auto Trait Implementations§
impl Freeze for CloseSessionErrorCode
impl RefUnwindSafe for CloseSessionErrorCode
impl Send for CloseSessionErrorCode
impl Sync for CloseSessionErrorCode
impl Unpin for CloseSessionErrorCode
impl UnsafeUnpin for CloseSessionErrorCode
impl UnwindSafe for CloseSessionErrorCode
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