Enum nmstate::BondAdSelect
source · #[non_exhaustive]
pub enum BondAdSelect {
Stable,
Bandwidth,
Count,
}Expand description
Specifies the 802.3ad aggregation selection logic to use.
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.
Stable
Deserialize and serialize from/to stable.
Bandwidth
Deserialize and serialize from/to bandwidth.
Count
Deserialize and serialize from/to count.
Trait Implementations
sourceimpl Clone for BondAdSelect
impl Clone for BondAdSelect
sourcefn clone(&self) -> BondAdSelect
fn clone(&self) -> BondAdSelect
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for BondAdSelect
impl Debug for BondAdSelect
sourceimpl<'de> Deserialize<'de> for BondAdSelect
impl<'de> Deserialize<'de> for BondAdSelect
sourcefn 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
sourceimpl Display for BondAdSelect
impl Display for BondAdSelect
sourceimpl From<BondAdSelect> for u8
impl From<BondAdSelect> for u8
sourcefn from(v: BondAdSelect) -> u8
fn from(v: BondAdSelect) -> u8
Converts to this type from the input type.
sourceimpl PartialEq<BondAdSelect> for BondAdSelect
impl PartialEq<BondAdSelect> for BondAdSelect
sourcefn eq(&self, other: &BondAdSelect) -> bool
fn eq(&self, other: &BondAdSelect) -> bool
sourceimpl Serialize for BondAdSelect
impl Serialize for BondAdSelect
impl Copy for BondAdSelect
impl Eq for BondAdSelect
impl StructuralEq for BondAdSelect
impl StructuralPartialEq for BondAdSelect
Auto Trait Implementations
impl RefUnwindSafe for BondAdSelect
impl Send for BondAdSelect
impl Sync for BondAdSelect
impl Unpin for BondAdSelect
impl UnwindSafe for BondAdSelect
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.