Enum net::wire::Ipv6RoutingType
pub enum Ipv6RoutingType {
Type0,
Nimrod,
Type2,
Rpl,
Experiment1,
Experiment2,
Reserved,
Unknown(u8),
}
Expand description
IPv6 Extension Routing Header Routing Type
Variants§
Type0
Source Route (DEPRECATED)
See https://tools.ietf.org/html/rfc5095 for details.
Nimrod
Nimrod (DEPRECATED 2009-05-06)
Type2
Type 2 Routing Header for Mobile IPv6
See https://tools.ietf.org/html/rfc6275#section-6.4 for details.
Rpl
RPL Source Routing Header
See https://tools.ietf.org/html/rfc6554 for details.
Experiment1
RFC3692-style Experiment 1
See https://tools.ietf.org/html/rfc4727 for details.
Experiment2
RFC3692-style Experiment 2
See https://tools.ietf.org/html/rfc4727 for details.
Reserved
Reserved for future use
Unknown(u8)
Trait Implementations§
§impl Ord for Type
impl Ord for Type
§impl PartialOrd<Type> for Type
impl PartialOrd<Type> for Type
§fn partial_cmp(&self, other: &Type) -> Option<Ordering>
fn partial_cmp(&self, other: &Type) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Type
impl Eq for Type
impl StructuralEq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
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