#[non_exhaustive]pub enum BondArpValidate {
None,
Active,
Backup,
All,
Filter,
FilterActive,
FilterBackup,
Other(u32),
}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.
Trait Implementations§
Source§impl Clone for BondArpValidate
impl Clone for BondArpValidate
Source§fn clone(&self) -> BondArpValidate
fn clone(&self) -> BondArpValidate
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 BondArpValidate
impl Debug for BondArpValidate
Source§impl Default for BondArpValidate
impl Default for BondArpValidate
Source§fn default() -> BondArpValidate
fn default() -> BondArpValidate
Returns the “default value” for a type. Read more
Source§impl Display for BondArpValidate
impl Display for BondArpValidate
Source§impl From<BondArpValidate> for u32
impl From<BondArpValidate> for u32
Source§fn from(value: BondArpValidate) -> Self
fn from(value: BondArpValidate) -> Self
Converts to this type from the input type.
Source§impl From<u32> for BondArpValidate
impl From<u32> for BondArpValidate
Source§impl PartialEq for BondArpValidate
impl PartialEq for BondArpValidate
impl Copy for BondArpValidate
impl Eq for BondArpValidate
impl StructuralPartialEq for BondArpValidate
Auto Trait Implementations§
impl Freeze for BondArpValidate
impl RefUnwindSafe for BondArpValidate
impl Send for BondArpValidate
impl Sync for BondArpValidate
impl Unpin for BondArpValidate
impl UnwindSafe for BondArpValidate
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