pub(crate) struct ParsedMessage<T> {
    head: MessageHead<T>,
    decode: DecodedLength,
    expect_continue: bool,
    keep_alive: bool,
    wants_upgrade: bool,
}Fields§
§head: MessageHead<T>§decode: DecodedLength§expect_continue: bool§keep_alive: bool§wants_upgrade: boolTrait Implementations§
Auto Trait Implementations§
impl<T> Freeze for ParsedMessage<T>where
    T: Freeze,
impl<T> !RefUnwindSafe for ParsedMessage<T>
impl<T> Send for ParsedMessage<T>where
    T: Send,
impl<T> Sync for ParsedMessage<T>where
    T: Sync,
impl<T> Unpin for ParsedMessage<T>where
    T: Unpin,
impl<T> !UnwindSafe for ParsedMessage<T>
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