[][src]Struct domain_core::rdata::rfc1035::Wks

pub struct Wks { /* fields omitted */ }

Wks record data.

Wks records describe the well-known services supported by a particular protocol on a particular internet address.

The Wks record type is defined in RFC 1035, section 3.4.2.

Methods

impl Wks[src]

pub fn new(address: Ipv4Addr, protocol: u8, bitmap: Bytes) -> Self[src]

Creates a new record data from components.

pub fn address(&self) -> Ipv4Addr[src]

The IPv4 address of the host this record refers to.

pub fn protocol(&self) -> u8[src]

The protocol number of the protocol this record refers to.

This will typically be 6 for TCP or 17 for UDP.

pub fn bitmap(&self) -> &Bytes[src]

A bitmap indicating the ports where service is being provided.

pub fn serves(&self, port: u16) -> bool[src]

Returns whether a certain service is being provided.

Important traits for WksIter
pub fn iter(&self) -> WksIter[src]

Returns an iterator over the served ports.

Trait Implementations

impl Compose for Wks[src]

impl Compress for Wks[src]

impl ParseAll for Wks[src]

type Err = ParseOpenError

The type returned when parsing fails.

impl RtypeRecordData for Wks[src]

impl Scan for Wks[src]

impl Eq for Wks[src]

impl Clone for Wks[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialOrd<Wks> for Wks[src]

impl PartialEq<Wks> for Wks[src]

impl Ord for Wks[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl<N> From<Wks> for MasterRecordData<N>[src]

impl<N> From<Wks> for AllRecordData<N>[src]

impl Hash for Wks[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Wks[src]

impl Display for Wks[src]

Auto Trait Implementations

impl Send for Wks

impl Sync for Wks

Blanket Implementations

impl<T> RecordData for T where
    T: Compose + Compress + RtypeRecordData
[src]

impl<T> ParseRecordData for T where
    T: Compose + Compress + ParseAll + RtypeRecordData
[src]

type Err = <T as ParseAll>::Err

The type of an error returned when parsing fails.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]