pub enum Icmpv6DstUnreachable {
NoRoute,
AdminProhibit,
BeyondScope,
AddrUnreachable,
PortUnreachable,
FailedPolicy,
RejectRoute,
Unknown(u8),
}
Expand description
Internet protocol control message subtype for type “Destination Unreachable”.
Variants§
NoRoute
No Route to destination.
AdminProhibit
Communication with destination administratively prohibited.
BeyondScope
Beyond scope of source address.
AddrUnreachable
Address unreachable.
PortUnreachable
Port unreachable.
FailedPolicy
Source address failed ingress/egress policy.
RejectRoute
Reject route to destination.
Unknown(u8)
Trait Implementations§
Source§impl Clone for DstUnreachable
impl Clone for DstUnreachable
Source§fn clone(&self) -> DstUnreachable
fn clone(&self) -> DstUnreachable
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 DstUnreachable
impl Debug for DstUnreachable
Source§impl Display for DstUnreachable
impl Display for DstUnreachable
Source§impl From<DstUnreachable> for u8
impl From<DstUnreachable> for u8
Source§fn from(value: DstUnreachable) -> Self
fn from(value: DstUnreachable) -> Self
Converts to this type from the input type.
Source§impl From<u8> for DstUnreachable
impl From<u8> for DstUnreachable
Source§impl Hash for DstUnreachable
impl Hash for DstUnreachable
Source§impl Ord for DstUnreachable
impl Ord for DstUnreachable
Source§fn cmp(&self, other: &DstUnreachable) -> Ordering
fn cmp(&self, other: &DstUnreachable) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DstUnreachable
impl PartialEq for DstUnreachable
Source§impl PartialOrd for DstUnreachable
impl PartialOrd for DstUnreachable
impl Copy for DstUnreachable
impl Eq for DstUnreachable
impl StructuralPartialEq for DstUnreachable
Auto Trait Implementations§
impl Freeze for DstUnreachable
impl RefUnwindSafe for DstUnreachable
impl Send for DstUnreachable
impl Sync for DstUnreachable
impl Unpin for DstUnreachable
impl UnwindSafe for DstUnreachable
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