pub enum CongestionAlgorithm {
Cubic,
Bbr,
NewReno,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CongestionAlgorithm
impl Clone for CongestionAlgorithm
Source§fn clone(&self) -> CongestionAlgorithm
fn clone(&self) -> CongestionAlgorithm
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 ValueEnum for CongestionAlgorithm
impl ValueEnum for CongestionAlgorithm
impl Copy for CongestionAlgorithm
Auto Trait Implementations§
impl Freeze for CongestionAlgorithm
impl RefUnwindSafe for CongestionAlgorithm
impl Send for CongestionAlgorithm
impl Sync for CongestionAlgorithm
impl Unpin for CongestionAlgorithm
impl UnwindSafe for CongestionAlgorithm
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