pub struct ExtensionHeaderOption<O> {
pub action: ExtensionHeaderOptionAction,
pub mutable: bool,
pub data: O,
}
Expand description
Extension header option.
Generic Extension header option type that has extension header specific
option data (data
) defined by an O
. The common option format is defined in
section 4.2 of RFC 8200, outlining actions and mutability for option types.
Fields§
§action: ExtensionHeaderOptionAction
Action to take if the option type is unrecognized.
mutable: bool
Whether or not the option data of the option can change en route to the packet’s final destination. When an Authentication header is present in the packet, the option data must be treated as 0s when computing or verifying the packet’s authenticating value when the option data can change en route.
data: O
Option data associated with a specific extension header.
Trait Implementations§
Source§impl<O: Clone> Clone for ExtensionHeaderOption<O>
impl<O: Clone> Clone for ExtensionHeaderOption<O>
Source§fn clone(&self) -> ExtensionHeaderOption<O>
fn clone(&self) -> ExtensionHeaderOption<O>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<O: Debug> Debug for ExtensionHeaderOption<O>
impl<O: Debug> Debug for ExtensionHeaderOption<O>
Source§impl<O: PartialEq> PartialEq for ExtensionHeaderOption<O>
impl<O: PartialEq> PartialEq for ExtensionHeaderOption<O>
impl<O: Eq> Eq for ExtensionHeaderOption<O>
impl<O> StructuralPartialEq for ExtensionHeaderOption<O>
Auto Trait Implementations§
impl<O> Freeze for ExtensionHeaderOption<O>where
O: Freeze,
impl<O> RefUnwindSafe for ExtensionHeaderOption<O>where
O: RefUnwindSafe,
impl<O> Send for ExtensionHeaderOption<O>where
O: Send,
impl<O> Sync for ExtensionHeaderOption<O>where
O: Sync,
impl<O> Unpin for ExtensionHeaderOption<O>where
O: Unpin,
impl<O> UnwindSafe for ExtensionHeaderOption<O>where
O: UnwindSafe,
Blanket Implementations§
§impl<O> AlignedRecordBuilder for Owhere
O: AlignedOptionBuilder,
impl<O> AlignedRecordBuilder for Owhere
O: AlignedOptionBuilder,
§fn alignment_requirement(&self) -> (usize, usize)
fn alignment_requirement(&self) -> (usize, usize)
Returns the alignment requirement of
self
. Read more§fn serialize_padding(buf: &mut [u8], length: usize)
fn serialize_padding(buf: &mut [u8], length: usize)
Serializes the padding between subsequent aligned records. Read more
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<O> RecordBuilder for Owhere
O: OptionBuilder,
impl<O> RecordBuilder for Owhere
O: OptionBuilder,
§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Provides the serialized length of a record. Read more
§fn serialize_into(&self, data: &mut [u8])
fn serialize_into(&self, data: &mut [u8])
Serializes
self
into a buffer. Read more