Struct simple_dns::rdata::HTTPS

source ·
pub struct HTTPS<'a>(pub SVCB<'a>);
Expand description

HTTPS RR type is a SVCB-compatible RR type, specific to the “https” and “http” schemes. RFC 9460.

Tuple Fields§

§0: SVCB<'a>

Implementations§

source§

impl<'a> HTTPS<'a>

source

pub fn into_owned<'b>(self) -> HTTPS<'b>

Transforms the inner data into its owned type

Methods from Deref<Target = SVCB<'a>>§

source

pub const MANDATORY: u16 = 0u16

source

pub const ALPN: u16 = 1u16

source

pub const NO_DEFAULT_ALPN: u16 = 2u16

source

pub const PORT: u16 = 3u16

source

pub const IPV4HINT: u16 = 4u16

source

pub const ECH: u16 = 5u16

source

pub const IPV6HINT: u16 = 6u16

source

pub fn set_param<V: Into<Cow<'a, [u8]>>>( &mut self, key: u16, value: V ) -> Result<()>

Sets an arbitrary key=value parameter.

The format of value is not checked against the key.

If a parameter of the given key already existed, the previous entry will be replaced.

source

pub fn set_mandatory<I: IntoIterator<Item = u16>>( &mut self, keys: I ) -> Result<()>

Sets the “mandatory” parameter.

The keys MUST not be empty and already in strictly increasing order.

source

pub fn set_alpn<'cs, I: IntoIterator<Item = CharacterString<'cs>>>( &mut self, alpn_ids: I ) -> Result<()>

Sets the “alpn” parameter.

The alpn_ids MUST not be empty.

source

pub fn set_no_default_alpn(&mut self)

Sets the “no-default-alpn” parameter.

source

pub fn set_port(&mut self, port: u16)

Sets the “port” parameter.

source

pub fn set_ipv4hint<I: IntoIterator<Item = u32>>( &mut self, ips: I ) -> Result<()>

Sets the “ipv4hint” parameter.

The ips MUST not be empty.

source

pub fn set_ipv6hint<I: IntoIterator<Item = u128>>( &mut self, ips: I ) -> Result<()>

Sets the “ipv6hint” parameter.

The ips MUST not be empty.

source

pub fn get_param(&self, key: u16) -> Option<&[u8]>

Gets a read-only reference to the SvcParamValue of a given key in wire format.

Returns None if the key does not exist.

source

pub fn iter_params(&self) -> impl Iterator<Item = (u16, &[u8])>

Iterates over all parameters.

Trait Implementations§

source§

impl<'a> Clone for HTTPS<'a>

source§

fn clone(&self) -> HTTPS<'a>

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<'a> Debug for HTTPS<'a>

source§

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

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

impl<'a> Deref for HTTPS<'a>

§

type Target = SVCB<'a>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<'a> DerefMut for HTTPS<'a>

source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.
source§

impl<'a> From<SVCB<'a>> for HTTPS<'a>

source§

fn from(value: SVCB<'a>) -> Self

Converts to this type from the input type.
source§

impl<'a> Hash for HTTPS<'a>

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> PartialEq for HTTPS<'a>

source§

fn eq(&self, other: &HTTPS<'a>) -> 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<'a> Eq for HTTPS<'a>

source§

impl<'a> StructuralPartialEq for HTTPS<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for HTTPS<'a>

§

impl<'a> RefUnwindSafe for HTTPS<'a>

§

impl<'a> Send for HTTPS<'a>

§

impl<'a> Sync for HTTPS<'a>

§

impl<'a> Unpin for HTTPS<'a>

§

impl<'a> UnwindSafe for HTTPS<'a>

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<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, 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.