pub enum Next<Incoming, Outgoing, Responder> {
Incoming(Communication<Incoming>),
Outgoing(WebSocketItem<Communication<Outgoing>, Responder>),
}Variants§
Incoming(Communication<Incoming>)
Outgoing(WebSocketItem<Communication<Outgoing>, Responder>)
Trait Implementations§
Auto Trait Implementations§
impl<Incoming, Outgoing, Responder> Freeze for Next<Incoming, Outgoing, Responder>
impl<Incoming, Outgoing, Responder> RefUnwindSafe for Next<Incoming, Outgoing, Responder>
impl<Incoming, Outgoing, Responder> Send for Next<Incoming, Outgoing, Responder>
impl<Incoming, Outgoing, Responder> Sync for Next<Incoming, Outgoing, Responder>
impl<Incoming, Outgoing, Responder> Unpin for Next<Incoming, Outgoing, Responder>
impl<Incoming, Outgoing, Responder> UnwindSafe for Next<Incoming, Outgoing, Responder>
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