pub enum AdjustmentReason {
BdpIncrease {
bdp: u64,
optimal: usize,
},
SlowSegment {
speed: f64,
threshold: f64,
},
ConnectionLimit,
}Variants§
Trait Implementations§
Source§impl Clone for AdjustmentReason
impl Clone for AdjustmentReason
Source§fn clone(&self) -> AdjustmentReason
fn clone(&self) -> AdjustmentReason
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 moreAuto Trait Implementations§
impl Freeze for AdjustmentReason
impl RefUnwindSafe for AdjustmentReason
impl Send for AdjustmentReason
impl Sync for AdjustmentReason
impl Unpin for AdjustmentReason
impl UnwindSafe for AdjustmentReason
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