pub struct Config { /* private fields */ }
Expand description
An HTTP/3 configuration.
Implementations§
source§impl Config
impl Config
sourcepub fn set_max_field_section_size(&mut self, v: u64)
pub fn set_max_field_section_size(&mut self, v: u64)
Sets the SETTINGS_MAX_FIELD_SECTION_SIZE
setting.
By default no limit is enforced. When a request whose headers exceed
the limit set by the application is received, the call to the poll()
method will return the Error::ExcessiveLoad
error, and the
connection will be closed.
sourcepub fn set_qpack_max_table_capacity(&mut self, v: u64)
pub fn set_qpack_max_table_capacity(&mut self, v: u64)
Sets the SETTINGS_QPACK_MAX_TABLE_CAPACITY
setting.
The default value is 0
.
sourcepub fn set_qpack_blocked_streams(&mut self, v: u64)
pub fn set_qpack_blocked_streams(&mut self, v: u64)
Sets the SETTINGS_QPACK_BLOCKED_STREAMS
setting.
The default value is 0
.
sourcepub fn enable_extended_connect(&mut self, enabled: bool)
pub fn enable_extended_connect(&mut self, enabled: bool)
Sets or omits the SETTINGS_ENABLE_CONNECT_PROTOCOL
setting.
The default value is false
.
Auto Trait Implementations§
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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