#[non_exhaustive]pub enum RouteMplsTtlPropagation {
Default,
Enabled,
Disabled,
Other(u8),
}
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 RouteMplsTtlPropagation
impl Clone for RouteMplsTtlPropagation
source§fn clone(&self) -> RouteMplsTtlPropagation
fn clone(&self) -> RouteMplsTtlPropagation
Returns a copy 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 RouteMplsTtlPropagation
impl Debug for RouteMplsTtlPropagation
source§impl Default for RouteMplsTtlPropagation
impl Default for RouteMplsTtlPropagation
source§fn default() -> RouteMplsTtlPropagation
fn default() -> RouteMplsTtlPropagation
Returns the “default value” for a type. Read more
source§impl From<RouteMplsTtlPropagation> for u8
impl From<RouteMplsTtlPropagation> for u8
source§fn from(v: RouteMplsTtlPropagation) -> u8
fn from(v: RouteMplsTtlPropagation) -> u8
Converts to this type from the input type.
source§impl From<u8> for RouteMplsTtlPropagation
impl From<u8> for RouteMplsTtlPropagation
source§impl PartialEq for RouteMplsTtlPropagation
impl PartialEq for RouteMplsTtlPropagation
source§fn eq(&self, other: &RouteMplsTtlPropagation) -> bool
fn eq(&self, other: &RouteMplsTtlPropagation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for RouteMplsTtlPropagation
impl Eq for RouteMplsTtlPropagation
impl StructuralEq for RouteMplsTtlPropagation
impl StructuralPartialEq for RouteMplsTtlPropagation
Auto Trait Implementations§
impl RefUnwindSafe for RouteMplsTtlPropagation
impl Send for RouteMplsTtlPropagation
impl Sync for RouteMplsTtlPropagation
impl Unpin for RouteMplsTtlPropagation
impl UnwindSafe for RouteMplsTtlPropagation
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