pub enum UnreachableCodeV6 {
CommunicationWithDestinationAdministrativelyProhibited,
SourceAddressFailedIngressEgressPolicy,
ErrorInSourceRoutingHeader,
BeyondScopeOfSourceAddress,
RejectRouteToDestination,
NoRouteToDestination,
AddressUnreachable,
PortUnreachable,
Unexpected(u8),
}Variants§
CommunicationWithDestinationAdministrativelyProhibited
SourceAddressFailedIngressEgressPolicy
ErrorInSourceRoutingHeader
BeyondScopeOfSourceAddress
RejectRouteToDestination
NoRouteToDestination
AddressUnreachable
PortUnreachable
Unexpected(u8)
Contains unexpected code.
Trait Implementations§
Source§impl Clone for UnreachableCodeV6
impl Clone for UnreachableCodeV6
Source§fn clone(&self) -> UnreachableCodeV6
fn clone(&self) -> UnreachableCodeV6
Returns a duplicate 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 UnreachableCodeV6
impl Debug for UnreachableCodeV6
Source§impl PartialEq for UnreachableCodeV6
impl PartialEq for UnreachableCodeV6
impl StructuralPartialEq for UnreachableCodeV6
Auto Trait Implementations§
impl Freeze for UnreachableCodeV6
impl RefUnwindSafe for UnreachableCodeV6
impl Send for UnreachableCodeV6
impl Sync for UnreachableCodeV6
impl Unpin for UnreachableCodeV6
impl UnwindSafe for UnreachableCodeV6
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