pub enum BondAllPortActive {
Dropped,
Delivered,
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 BondAllPortActive
impl Clone for BondAllPortActive
Source§fn clone(&self) -> BondAllPortActive
fn clone(&self) -> BondAllPortActive
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 BondAllPortActive
impl Debug for BondAllPortActive
Source§impl From<BondAllPortActive> for u8
impl From<BondAllPortActive> for u8
Source§fn from(v: BondAllPortActive) -> u8
fn from(v: BondAllPortActive) -> u8
Converts to this type from the input type.
Source§impl From<u8> for BondAllPortActive
impl From<u8> for BondAllPortActive
Source§impl PartialEq for BondAllPortActive
impl PartialEq for BondAllPortActive
impl Copy for BondAllPortActive
impl Eq for BondAllPortActive
impl StructuralPartialEq for BondAllPortActive
Auto Trait Implementations§
impl Freeze for BondAllPortActive
impl RefUnwindSafe for BondAllPortActive
impl Send for BondAllPortActive
impl Sync for BondAllPortActive
impl Unpin for BondAllPortActive
impl UnwindSafe for BondAllPortActive
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