#[non_exhaustive]pub enum Ipv6RoutingRepr<'a> {
Type2 {
segments_left: u8,
home_address: Ipv6Address,
},
Rpl {
segments_left: u8,
cmpr_i: u8,
cmpr_e: u8,
pad: u8,
addresses: &'a [u8],
},
}
Expand description
A high-level representation of an IPv6 Routing Header.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Type2
Fields
§
home_address: Ipv6Address
The home address of the destination mobile node.
Rpl
Implementations§
Source§impl<'a> Repr<'a>
impl<'a> Repr<'a>
Trait Implementations§
impl<'a> Copy for Repr<'a>
impl<'a> Eq for Repr<'a>
impl<'a> StructuralPartialEq for Repr<'a>
Auto Trait Implementations§
impl<'a> Freeze for Repr<'a>
impl<'a> RefUnwindSafe for Repr<'a>
impl<'a> Send for Repr<'a>
impl<'a> Sync for Repr<'a>
impl<'a> Unpin for Repr<'a>
impl<'a> UnwindSafe for Repr<'a>
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