pub enum ClientConn {
Active(Framed<UnixStream, FrameCodec>),
Tail(Framed<UnixStream, FrameCodec>),
}Expand description
Wrapper to distinguish active vs tail connections arriving via channel.
Variants§
Active(Framed<UnixStream, FrameCodec>)
Tail(Framed<UnixStream, FrameCodec>)
Auto Trait Implementations§
impl !Freeze for ClientConn
impl RefUnwindSafe for ClientConn
impl Send for ClientConn
impl Sync for ClientConn
impl Unpin for ClientConn
impl UnsafeUnpin for ClientConn
impl UnwindSafe for ClientConn
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