pub enum StreamState {
DecodeHeader,
DecodeBody(TransferMethod, PollSender<Result<Vec<u8>>>, usize, Option<Result<Vec<u8>>>, bool, bool),
}
Variants§
DecodeHeader
DecodeBody(TransferMethod, PollSender<Result<Vec<u8>>>, usize, Option<Result<Vec<u8>>>, bool, bool)
Auto Trait Implementations§
impl Freeze for StreamState
impl !RefUnwindSafe for StreamState
impl Send for StreamState
impl Sync for StreamState
impl Unpin for StreamState
impl !UnwindSafe for StreamState
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