pub enum Egress<S> {
Inline {
written: usize,
},
Static {
head: usize,
body: &'static [u8],
},
Shared {
head: usize,
body: Shared,
},
Pooled {
head: usize,
body: Pooled,
},
Stream {
head: usize,
stream: S,
},
Failed,
}Variants§
Auto Trait Implementations§
impl<S> !RefUnwindSafe for Egress<S>
impl<S> !Send for Egress<S>
impl<S> !Sync for Egress<S>
impl<S> !UnwindSafe for Egress<S>
impl<S> Freeze for Egress<S>where
S: Freeze,
impl<S> Unpin for Egress<S>where
S: Unpin,
impl<S> UnsafeUnpin for Egress<S>where
S: UnsafeUnpin,
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