#[non_exhaustive]pub enum BondArpAllTargets {
Any,
All,
}Expand description
The arp_all_targets kernel bond option.
Specifies the quantity of arp_ip_target that must be reachable in order for the ARP monitor to consider a port as being up. This option affects only active-backup mode for ports with arp_validation enabled.
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.
Any
consider the port up only when any of the arp_ip_target is reachable
All
consider the port up only when all of the arp_ip_target are
reachable
Implementations§
Source§impl BondArpAllTargets
impl BondArpAllTargets
pub fn serialize<__S>(
__self: &BondArpAllTargets,
__serializer: __S,
) -> Result<__S::Ok, __S::Error>where
__S: Serializer,
Source§impl<'de> BondArpAllTargets
impl<'de> BondArpAllTargets
pub fn deserialize<__D>(
__deserializer: __D,
) -> Result<BondArpAllTargets, __D::Error>where
__D: Deserializer<'de>,
Trait Implementations§
Source§impl Clone for BondArpAllTargets
impl Clone for BondArpAllTargets
Source§fn clone(&self) -> BondArpAllTargets
fn clone(&self) -> BondArpAllTargets
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 BondArpAllTargets
impl Debug for BondArpAllTargets
Source§impl<'de> Deserialize<'de> for BondArpAllTargets
impl<'de> Deserialize<'de> for BondArpAllTargets
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for BondArpAllTargets
impl Display for BondArpAllTargets
Source§impl PartialEq for BondArpAllTargets
impl PartialEq for BondArpAllTargets
Source§impl Serialize for BondArpAllTargets
impl Serialize for BondArpAllTargets
impl Eq for BondArpAllTargets
impl StructuralPartialEq for BondArpAllTargets
Auto Trait Implementations§
impl Freeze for BondArpAllTargets
impl RefUnwindSafe for BondArpAllTargets
impl Send for BondArpAllTargets
impl Sync for BondArpAllTargets
impl Unpin for BondArpAllTargets
impl UnwindSafe for BondArpAllTargets
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.