pub struct H2Frame {
pub len: u32,
pub ty: u8,
pub flags: u8,
pub stream_identifier: u32,
pub payload: Vec<u8>,
}Fields§
§len: u32§ty: u8§flags: u8§stream_identifier: u32§payload: Vec<u8>Trait Implementations§
Auto Trait Implementations§
impl Freeze for H2Frame
impl RefUnwindSafe for H2Frame
impl Send for H2Frame
impl Sync for H2Frame
impl Unpin for H2Frame
impl UnwindSafe for H2Frame
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