Struct domain::base::opt::UnknownOptData

source ·
pub struct UnknownOptData<Octs> { /* private fields */ }
Expand description

An OPT option in its raw form.

This type accepts any option type via its option code and raw data.

Implementations§

source§

impl<Octs> UnknownOptData<Octs>

source

pub fn new(code: OptionCode, data: Octs) -> Result<Self, LongOptData>
where Octs: AsRef<[u8]>,

Creates a new option from the code and data.

The function returns an error if data is longer than 65,535 octets.

source

pub unsafe fn new_unchecked(code: OptionCode, data: Octs) -> Self

Creates a new option data value without checking.

§Safety

The caller needs to make sure that data is not longer than 65,535 octets.

source

pub fn code(&self) -> OptionCode

Returns the option code of the option.

source

pub fn data(&self) -> &Octs

Returns a reference for to the option data.

source

pub fn as_slice(&self) -> &[u8]
where Octs: AsRef<[u8]>,

Returns a slice of the option data.

source

pub fn as_slice_mut(&mut self) -> &mut [u8]
where Octs: AsMut<[u8]>,

Returns a mutable slice of the option data.

Trait Implementations§

source§

impl<Octs: AsMut<[u8]>> AsMut<[u8]> for UnknownOptData<Octs>

source§

fn as_mut(&mut self) -> &mut [u8]

Converts this type into a mutable reference of the (usually inferred) input type.
source§

impl<Octs: AsRef<[u8]>> AsRef<[u8]> for UnknownOptData<Octs>

source§

fn as_ref(&self) -> &[u8]

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<Octs> AsRef<Octs> for UnknownOptData<Octs>

source§

fn as_ref(&self) -> &Octs

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<Octs: Clone> Clone for UnknownOptData<Octs>

source§

fn clone(&self) -> UnknownOptData<Octs>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<Octs: AsRef<[u8]>> ComposeOptData for UnknownOptData<Octs>

source§

fn compose_len(&self) -> u16

source§

fn compose_option<Target: OctetsBuilder + ?Sized>( &self, target: &mut Target, ) -> Result<(), Target::AppendError>

source§

impl<Octs: Debug> Debug for UnknownOptData<Octs>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Octs: AsRef<[u8]>> Display for UnknownOptData<Octs>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Octs: AsRef<[u8]>> OptData for UnknownOptData<Octs>

source§

fn code(&self) -> OptionCode

Returns the option code associated with this option.
source§

impl<'a, Octs> ParseOptData<'a, Octs> for UnknownOptData<Octs::Range<'a>>
where Octs: Octets + ?Sized,

source§

fn parse_option( code: OptionCode, parser: &mut Parser<'a, Octs>, ) -> Result<Option<Self>, ParseError>

Parses the option code data. Read more

Auto Trait Implementations§

§

impl<Octs> Freeze for UnknownOptData<Octs>
where Octs: Freeze,

§

impl<Octs> RefUnwindSafe for UnknownOptData<Octs>
where Octs: RefUnwindSafe,

§

impl<Octs> Send for UnknownOptData<Octs>
where Octs: Send,

§

impl<Octs> Sync for UnknownOptData<Octs>
where Octs: Sync,

§

impl<Octs> Unpin for UnknownOptData<Octs>
where Octs: Unpin,

§

impl<Octs> UnwindSafe for UnknownOptData<Octs>
where Octs: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Source, Target> OctetsInto<Target> for Source
where Target: OctetsFrom<Source>,

§

type Error = <Target as OctetsFrom<Source>>::Error

source§

fn try_octets_into( self, ) -> Result<Target, <Source as OctetsInto<Target>>::Error>

Performs the conversion.
source§

fn octets_into(self) -> Target
where Self::Error: Into<Infallible>,

Performs an infallible conversion.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V