pub struct QuicTuning {
pub idle_timeout_ms: u64,
pub keep_alive_interval_ms: u64,
pub max_bidi_streams: u64,
pub datagram_receive_buffer_bytes: usize,
}Available on crate feature
http3-profile only.Expand description
Fields§
§idle_timeout_ms: u64QUIC idle timeout in milliseconds.
keep_alive_interval_ms: u64Keep-alive probe interval in milliseconds.
max_bidi_streams: u64Max concurrent bidirectional streams.
datagram_receive_buffer_bytes: usizeDatagram receive buffer target in bytes.
Trait Implementations§
Source§impl Clone for QuicTuning
impl Clone for QuicTuning
Source§fn clone(&self) -> QuicTuning
fn clone(&self) -> QuicTuning
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QuicTuning
impl Debug for QuicTuning
Source§impl PartialEq for QuicTuning
impl PartialEq for QuicTuning
impl Copy for QuicTuning
impl Eq for QuicTuning
impl StructuralPartialEq for QuicTuning
Auto Trait Implementations§
impl Freeze for QuicTuning
impl RefUnwindSafe for QuicTuning
impl Send for QuicTuning
impl Sync for QuicTuning
impl Unpin for QuicTuning
impl UnsafeUnpin for QuicTuning
impl UnwindSafe for QuicTuning
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.