pub enum WsOpcode {
CONTINUATION = 0,
TEXT = 1,
BINARY = 2,
CLOSE = 8,
PING = 9,
PONG = 10,
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WsOpcode
impl RefUnwindSafe for WsOpcode
impl Send for WsOpcode
impl Sync for WsOpcode
impl Unpin for WsOpcode
impl UnsafeUnpin for WsOpcode
impl UnwindSafe for WsOpcode
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