pub struct Ipv6FragmentRepr {
pub frag_offset: u16,
pub more_frags: bool,
pub ident: u32,
}
Expand description
A high-level representation of an IPv6 Fragment header.
Fields§
§frag_offset: u16
The offset of the data following this header, relative to the start of the Fragmentable Part of the original packet.
more_frags: bool
When there are more fragments following this header
ident: u32
The identification for every packet that is fragmented.
Implementations§
Trait Implementations§
impl Copy for Repr
impl Eq for Repr
impl StructuralPartialEq for Repr
Auto Trait Implementations§
impl Freeze for Repr
impl RefUnwindSafe for Repr
impl Send for Repr
impl Sync for Repr
impl Unpin for Repr
impl UnwindSafe for Repr
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