Struct simple_dns::rdata::SVCB

source ·
pub struct SVCB<'a> {
    pub priority: u16,
    pub target: Name<'a>,
    /* private fields */
}
Expand description

The SVCB DNS RR type is used to locate alternative endpoints for a service. RFC 9460.

Fields§

§priority: u16

The priority of this record (relative to others, with lower values preferred).

A value of 0 indicates AliasMode.

§target: Name<'a>

The domain name of either the alias target (for AliasMode) or the alternative endpoint (for ServiceMode).

Implementations§

source§

impl<'a> SVCB<'a>

source

pub const MANDATORY: u16 = 0u16

Mandatory keys in this RR.

source

pub const ALPN: u16 = 1u16

Additional supported protocols.

source

pub const NO_DEFAULT_ALPN: u16 = 2u16

No support for default protocol.

source

pub const PORT: u16 = 3u16

Port for alternative endpoint.

source

pub const IPV4HINT: u16 = 4u16

IPv4 address hints.

source

pub const ECH: u16 = 5u16

Encrypted ClientHello (ECH) configuration.

source

pub const IPV6HINT: u16 = 6u16

IPv6 address hints.

source

pub fn new(priority: u16, target: Name<'a>) -> Self

Creates a new SVCB instance with no parameters.

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.

source

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

Transforms the inner data into its owned type

Trait Implementations§

source§

impl<'a> Clone for SVCB<'a>

source§

fn clone(&self) -> SVCB<'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 SVCB<'a>

source§

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

Formats the value using the given formatter. Read more
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 SVCB<'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 SVCB<'a>

source§

fn eq(&self, other: &SVCB<'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 SVCB<'a>

source§

impl<'a> StructuralPartialEq for SVCB<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for SVCB<'a>

§

impl<'a> RefUnwindSafe for SVCB<'a>

§

impl<'a> Send for SVCB<'a>

§

impl<'a> Sync for SVCB<'a>

§

impl<'a> Unpin for SVCB<'a>

§

impl<'a> UnwindSafe for SVCB<'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.