#[non_exhaustive]pub enum RouteMplsIpTunnel {
Destination(Vec<MplsLabel>),
Ttl(u8),
Other(DefaultNla),
}
Expand description
Netlink attributes for RTA_ENCAP
with RTA_ENCAP_TYPE
set to
LWTUNNEL_ENCAP_MPLS
.
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 RouteMplsIpTunnel
impl Clone for RouteMplsIpTunnel
source§fn clone(&self) -> RouteMplsIpTunnel
fn clone(&self) -> RouteMplsIpTunnel
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 RouteMplsIpTunnel
impl Debug for RouteMplsIpTunnel
source§impl Nla for RouteMplsIpTunnel
impl Nla for RouteMplsIpTunnel
source§impl PartialEq for RouteMplsIpTunnel
impl PartialEq for RouteMplsIpTunnel
source§fn eq(&self, other: &RouteMplsIpTunnel) -> bool
fn eq(&self, other: &RouteMplsIpTunnel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RouteMplsIpTunnel
impl StructuralEq for RouteMplsIpTunnel
impl StructuralPartialEq for RouteMplsIpTunnel
Auto Trait Implementations§
impl RefUnwindSafe for RouteMplsIpTunnel
impl Send for RouteMplsIpTunnel
impl Sync for RouteMplsIpTunnel
impl Unpin for RouteMplsIpTunnel
impl UnwindSafe for RouteMplsIpTunnel
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