pub enum VxlanError {
TunnelNotFound(u32),
TunnelExists(u32),
PacketTooSmall,
InvalidHeader,
VniMismatch {
expected: u32,
got: u32,
},
FdbMiss,
}Expand description
VXLAN overlay error.
Variants§
TunnelNotFound(u32)
Tunnel not found.
TunnelExists(u32)
Tunnel already exists.
PacketTooSmall
Packet too small.
InvalidHeader
Invalid VXLAN header.
VniMismatch
VNI mismatch.
FdbMiss
FDB lookup miss (no entry for MAC).
Trait Implementations§
Source§impl Clone for VxlanError
impl Clone for VxlanError
Source§fn clone(&self) -> VxlanError
fn clone(&self) -> VxlanError
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VxlanError
impl Debug for VxlanError
Source§impl PartialEq for VxlanError
impl PartialEq for VxlanError
impl Eq for VxlanError
impl StructuralPartialEq for VxlanError
Auto Trait Implementations§
impl Freeze for VxlanError
impl RefUnwindSafe for VxlanError
impl Send for VxlanError
impl Sync for VxlanError
impl Unpin for VxlanError
impl UnwindSafe for VxlanError
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)