Struct domain::rdata::svcb::UnknownSvcParam

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

A service binding parameter value in its raw form.

This type can be used for any value type. It keeps the value’s data in its raw wire format.

Implementations§

source§

impl<Octs> UnknownSvcParam<Octs>

source

pub fn new(key: SvcParamKey, value: Octs) -> Result<Self, LongSvcParam>
where Octs: AsRef<[u8]>,

Creates a new parameter value from the given key and data.

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

source

pub unsafe fn new_unchecked(key: SvcParamKey, value: Octs) -> Self

Creates a new SVCB parameter value without checking.

§Safety

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

source§

impl<Octs: AsRef<[u8]>> UnknownSvcParam<Octs>

source

pub fn parse<'a, Src: Octets<Range<'a> = Octs> + ?Sized>( key: SvcParamKey, parser: &mut Parser<'a, Src>, ) -> Result<Self, ParseError>

Parses a parameter value’s data from its wire format.

source

pub fn parse_param<'a, Src: Octets<Range<'a> = Octs> + ?Sized>( parser: &mut Parser<'a, Src>, ) -> Result<Self, ParseError>

Parses a full parameter from the wire format.

This function parses the key, length, and data of the parameter.

source

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

Appends the wire format of the full parameter to the target.

This includes the key and length of the parameter.

source§

impl<Octs> UnknownSvcParam<Octs>

source

pub fn key(&self) -> SvcParamKey

Returns the key of the value.

source

pub fn value(&self) -> &Octs

Returns a reference to the value octets.

source

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

Returns a slice of the value.

source

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

Returns a mutable slice of the value.

Trait Implementations§

source§

impl<Octs: AsMut<[u8]>> AsMut<[u8]> for UnknownSvcParam<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 UnknownSvcParam<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 UnknownSvcParam<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 UnknownSvcParam<Octs>

source§

fn clone(&self) -> UnknownSvcParam<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]>> ComposeSvcParamValue for UnknownSvcParam<Octs>

source§

fn compose_len(&self) -> u16

Returns the length of the composed value.
source§

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

Appends the wire format of the value to the end of target.
source§

impl<Octs: Debug> Debug for UnknownSvcParam<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 UnknownSvcParam<Octs>

source§

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

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

impl<Octs> From<UnknownSvcParam<Octs>> for AllValues<Octs>

source§

fn from(p: UnknownSvcParam<Octs>) -> Self

Converts to this type from the input type.
source§

impl<Octs: AsRef<[u8]>> Hash for UnknownSvcParam<Octs>

source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a, Octs: Octets + ?Sized> ParseSvcParamValue<'a, Octs> for UnknownSvcParam<Octs::Range<'a>>

source§

fn parse_value( key: SvcParamKey, parser: &mut Parser<'a, Octs>, ) -> Result<Option<Self>, ParseError>

Parse a parameter value from wire format. Read more
source§

impl<Octs, OtherOcts> PartialEq<UnknownSvcParam<OtherOcts>> for UnknownSvcParam<Octs>
where Octs: AsRef<[u8]>, OtherOcts: AsRef<[u8]>,

source§

fn eq(&self, other: &UnknownSvcParam<OtherOcts>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<Octs> SvcParamValue for UnknownSvcParam<Octs>

source§

fn key(&self) -> SvcParamKey

Returns the parameter key of the value.
source§

impl<Octs: AsRef<[u8]>> Eq for UnknownSvcParam<Octs>

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<Octs> UnwindSafe for UnknownSvcParam<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> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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