#[non_exhaustive]#[repr(u32)]pub enum _bindgen_ty_64 {
Show 19 variants
    RTAX_UNSPEC = 0,
    RTAX_LOCK = 1,
    RTAX_MTU = 2,
    RTAX_WINDOW = 3,
    RTAX_RTT = 4,
    RTAX_RTTVAR = 5,
    RTAX_SSTHRESH = 6,
    RTAX_CWND = 7,
    RTAX_ADVMSS = 8,
    RTAX_REORDERING = 9,
    RTAX_HOPLIMIT = 10,
    RTAX_INITCWND = 11,
    RTAX_FEATURES = 12,
    RTAX_RTO_MIN = 13,
    RTAX_INITRWND = 14,
    RTAX_QUICKACK = 15,
    RTAX_CC_ALGO = 16,
    RTAX_FASTOPEN_NO_COOKIE = 17,
    __RTAX_MAX = 18,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
RTAX_UNSPEC = 0
RTAX_LOCK = 1
RTAX_MTU = 2
RTAX_WINDOW = 3
RTAX_RTT = 4
RTAX_RTTVAR = 5
RTAX_SSTHRESH = 6
RTAX_CWND = 7
RTAX_ADVMSS = 8
RTAX_REORDERING = 9
RTAX_HOPLIMIT = 10
RTAX_INITCWND = 11
RTAX_FEATURES = 12
RTAX_RTO_MIN = 13
RTAX_INITRWND = 14
RTAX_QUICKACK = 15
RTAX_CC_ALGO = 16
RTAX_FASTOPEN_NO_COOKIE = 17
__RTAX_MAX = 18
Trait Implementations§
Source§impl Clone for _bindgen_ty_64
 
impl Clone for _bindgen_ty_64
Source§fn clone(&self) -> _bindgen_ty_64
 
fn clone(&self) -> _bindgen_ty_64
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 _bindgen_ty_64
 
impl Debug for _bindgen_ty_64
Source§impl Hash for _bindgen_ty_64
 
impl Hash for _bindgen_ty_64
Source§impl PartialEq for _bindgen_ty_64
 
impl PartialEq for _bindgen_ty_64
impl Copy for _bindgen_ty_64
impl Eq for _bindgen_ty_64
impl StructuralPartialEq for _bindgen_ty_64
Auto Trait Implementations§
impl Freeze for _bindgen_ty_64
impl RefUnwindSafe for _bindgen_ty_64
impl Send for _bindgen_ty_64
impl Sync for _bindgen_ty_64
impl Unpin for _bindgen_ty_64
impl UnwindSafe for _bindgen_ty_64
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