pub enum WebSocketFrameDecodeOutcome {
Incomplete,
AmbiguousFraming,
Frame(DecodedWebSocketFrame),
}Variants§
Trait Implementations§
Source§impl Clone for WebSocketFrameDecodeOutcome
impl Clone for WebSocketFrameDecodeOutcome
Source§fn clone(&self) -> WebSocketFrameDecodeOutcome
fn clone(&self) -> WebSocketFrameDecodeOutcome
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 WebSocketFrameDecodeOutcome
Source§impl Debug for WebSocketFrameDecodeOutcome
impl Debug for WebSocketFrameDecodeOutcome
impl Eq for WebSocketFrameDecodeOutcome
impl StructuralPartialEq for WebSocketFrameDecodeOutcome
Auto Trait Implementations§
impl Freeze for WebSocketFrameDecodeOutcome
impl RefUnwindSafe for WebSocketFrameDecodeOutcome
impl Send for WebSocketFrameDecodeOutcome
impl Sync for WebSocketFrameDecodeOutcome
impl Unpin for WebSocketFrameDecodeOutcome
impl UnsafeUnpin for WebSocketFrameDecodeOutcome
impl UnwindSafe for WebSocketFrameDecodeOutcome
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