#[non_exhaustive]pub enum RouteLwTunnelEncap {
Mpls(RouteMplsIpTunnel),
Other(DefaultNla),
}
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.
Mpls(RouteMplsIpTunnel)
Other(DefaultNla)
Trait Implementations§
source§impl Clone for RouteLwTunnelEncap
impl Clone for RouteLwTunnelEncap
source§fn clone(&self) -> RouteLwTunnelEncap
fn clone(&self) -> RouteLwTunnelEncap
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 RouteLwTunnelEncap
impl Debug for RouteLwTunnelEncap
source§impl Nla for RouteLwTunnelEncap
impl Nla for RouteLwTunnelEncap
source§impl<'a, T> ParseableParametrized<NlaBuffer<&'a T>, RouteLwEnCapType> for RouteLwTunnelEncap
impl<'a, T> ParseableParametrized<NlaBuffer<&'a T>, RouteLwEnCapType> for RouteLwTunnelEncap
source§fn parse_with_param(
buf: &NlaBuffer<&'a T>,
kind: RouteLwEnCapType
) -> Result<Self, DecodeError>
fn parse_with_param( buf: &NlaBuffer<&'a T>, kind: RouteLwEnCapType ) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq for RouteLwTunnelEncap
impl PartialEq for RouteLwTunnelEncap
source§fn eq(&self, other: &RouteLwTunnelEncap) -> bool
fn eq(&self, other: &RouteLwTunnelEncap) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RouteLwTunnelEncap
impl StructuralEq for RouteLwTunnelEncap
impl StructuralPartialEq for RouteLwTunnelEncap
Auto Trait Implementations§
impl RefUnwindSafe for RouteLwTunnelEncap
impl Send for RouteLwTunnelEncap
impl Sync for RouteLwTunnelEncap
impl Unpin for RouteLwTunnelEncap
impl UnwindSafe for RouteLwTunnelEncap
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