pub enum WsFrameImpl {
Close,
Ping,
Pong,
Binary(Vec<u8>),
Text(Vec<u8>),
PartData(Vec<u8>),
}Variants§
Auto Trait Implementations§
impl Freeze for WsFrameImpl
impl RefUnwindSafe for WsFrameImpl
impl Send for WsFrameImpl
impl Sync for WsFrameImpl
impl Unpin for WsFrameImpl
impl UnsafeUnpin for WsFrameImpl
impl UnwindSafe for WsFrameImpl
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