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§
Source§impl Ord for Type
impl Ord for Type
Source§impl PartialOrd for Type
impl PartialOrd for Type
impl Copy for Type
impl Eq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl Freeze for Type
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