pub enum WebSocketSessionOutboundAction {
Queued,
Send(WebSocketWireFraming),
Rejected,
Backpressured,
}Variants§
Trait Implementations§
Source§impl Clone for WebSocketSessionOutboundAction
impl Clone for WebSocketSessionOutboundAction
Source§fn clone(&self) -> WebSocketSessionOutboundAction
fn clone(&self) -> WebSocketSessionOutboundAction
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 WebSocketSessionOutboundAction
impl Eq for WebSocketSessionOutboundAction
impl StructuralPartialEq for WebSocketSessionOutboundAction
Auto Trait Implementations§
impl Freeze for WebSocketSessionOutboundAction
impl RefUnwindSafe for WebSocketSessionOutboundAction
impl Send for WebSocketSessionOutboundAction
impl Sync for WebSocketSessionOutboundAction
impl Unpin for WebSocketSessionOutboundAction
impl UnsafeUnpin for WebSocketSessionOutboundAction
impl UnwindSafe for WebSocketSessionOutboundAction
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