pub enum BondLacpRate {
Slow,
Fast,
Other(u8),
}Expand description
Specifies that duplicate frames (received on inactive ports) should be dropped (0) or delivered (1).
Variants§
Trait Implementations§
Source§impl Clone for BondLacpRate
impl Clone for BondLacpRate
Source§fn clone(&self) -> BondLacpRate
fn clone(&self) -> BondLacpRate
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 BondLacpRate
impl Debug for BondLacpRate
Source§impl From<BondLacpRate> for u8
impl From<BondLacpRate> for u8
Source§fn from(v: BondLacpRate) -> u8
fn from(v: BondLacpRate) -> u8
Converts to this type from the input type.
Source§impl From<u8> for BondLacpRate
impl From<u8> for BondLacpRate
Source§impl PartialEq for BondLacpRate
impl PartialEq for BondLacpRate
impl Copy for BondLacpRate
impl Eq for BondLacpRate
impl StructuralPartialEq for BondLacpRate
Auto Trait Implementations§
impl Freeze for BondLacpRate
impl RefUnwindSafe for BondLacpRate
impl Send for BondLacpRate
impl Sync for BondLacpRate
impl Unpin for BondLacpRate
impl UnwindSafe for BondLacpRate
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