#[repr(u16)]pub enum H2Setting {
HeaderTableSize(u32),
EnablePush(u32),
MaxConcurrentStreams(u32),
InitialWindowSize(u32),
MaxFrameSize(u32),
MaxHeaderListSize(u32),
Reserved {
flag: u16,
value: u32,
},
}Variants§
HeaderTableSize(u32)
EnablePush(u32)
MaxConcurrentStreams(u32)
InitialWindowSize(u32)
MaxFrameSize(u32)
MaxHeaderListSize(u32)
Reserved
Implementations§
Trait Implementations§
impl Copy for H2Setting
impl StructuralPartialEq for H2Setting
Auto Trait Implementations§
impl Freeze for H2Setting
impl RefUnwindSafe for H2Setting
impl Send for H2Setting
impl Sync for H2Setting
impl Unpin for H2Setting
impl UnsafeUnpin for H2Setting
impl UnwindSafe for H2Setting
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