pub enum ChannelSessionSupport {
Sessionless,
SingleSession,
MultiSession,
SessionBased,
Reserved(u8),
}Expand description
Session support for a channel.
Variants§
Trait Implementations§
Source§impl Clone for ChannelSessionSupport
impl Clone for ChannelSessionSupport
Source§fn clone(&self) -> ChannelSessionSupport
fn clone(&self) -> ChannelSessionSupport
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 ChannelSessionSupport
Source§impl Debug for ChannelSessionSupport
impl Debug for ChannelSessionSupport
Source§impl Display for ChannelSessionSupport
impl Display for ChannelSessionSupport
Source§impl From<u8> for ChannelSessionSupport
impl From<u8> for ChannelSessionSupport
Source§impl PartialEq for ChannelSessionSupport
impl PartialEq for ChannelSessionSupport
impl StructuralPartialEq for ChannelSessionSupport
Auto Trait Implementations§
impl Freeze for ChannelSessionSupport
impl RefUnwindSafe for ChannelSessionSupport
impl Send for ChannelSessionSupport
impl Sync for ChannelSessionSupport
impl Unpin for ChannelSessionSupport
impl UnsafeUnpin for ChannelSessionSupport
impl UnwindSafe for ChannelSessionSupport
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