pub struct Config { /* private fields */ }
Expand description
An HTTP/3 configuration.
Implementations
sourceimpl 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
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more