Struct net::wire::Ipv6ExtHeaderRepr
pub struct Ipv6ExtHeaderRepr<'a> {
pub next_header: Protocol,
pub length: u8,
pub data: &'a [u8],
}
Fields§
§next_header: Protocol
§length: u8
§data: &'a [u8]
Implementations§
§impl<'a> Repr<'a>
impl<'a> Repr<'a>
pub fn parse<T>(header: &Header<&'a T>) -> Result<Repr<'a>, Error>where
T: AsRef<[u8]> + ?Sized,
pub fn parse<T>(header: &Header<&'a T>) -> Result<Repr<'a>, Error>where T: AsRef<[u8]> + ?Sized,
Parse an IPv6 Extension Header Header and return a high-level representation.
pub const fn header_len(&self) -> usize
pub const fn header_len(&self) -> usize
Return the length, in bytes, of a header that will be emitted from this high-level representation.
Trait Implementations§
impl<'a> Copy for Repr<'a>
impl<'a> Eq for Repr<'a>
impl<'a> StructuralEq for Repr<'a>
impl<'a> StructuralPartialEq for Repr<'a>
Auto Trait Implementations§
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