pub enum SettingId {
QPackMaxTableCapacity,
MaxFieldSectionSize,
QPackBlockedStreams,
EnableConnectProtocol,
H3Datagram,
EnableWebTransport,
WebTransportMaxSessions,
Exercise(VarInt),
}Expand description
Settings IDs for an HTTP3 connection.
Variants§
QPackMaxTableCapacity
SETTINGS_QPACK_MAX_TABLE_CAPACITY.
MaxFieldSectionSize
SETTINGS_MAX_FIELD_SECTION_SIZE.
QPackBlockedStreams
SETTINGS_QPACK_BLOCKED_STREAMS.
EnableConnectProtocol
SETTINGS_ENABLE_CONNECT_PROTOCOL.
H3Datagram
SETTINGS_H3_DATAGRAM.
EnableWebTransport
SETTINGS_ENABLE_WEBTRANSPORT.
WebTransportMaxSessions
WEBTRANSPORT_MAX_SESSIONS.
Exercise(VarInt)
Exercise setting.
Trait Implementations§
impl Copy for SettingId
impl Eq for SettingId
impl StructuralPartialEq for SettingId
Auto Trait Implementations§
impl Freeze for SettingId
impl RefUnwindSafe for SettingId
impl Send for SettingId
impl Sync for SettingId
impl Unpin for SettingId
impl UnwindSafe for SettingId
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