Struct gnunet_sys::GNUNET_TUN_DnsSrvRecord[][src]

#[repr(C, packed)]pub struct GNUNET_TUN_DnsSrvRecord {
    pub prio: u16,
    pub weight: u16,
    pub port: u16,
}

Payload of DNS SRV record (header).

Fields

prio: u16

Preference for this entry (lower value is higher preference). Clients will contact hosts from the lowest-priority group first and fall back to higher priorities if the low-priority entries are unavailable. (NBO)

weight: u16

Relative weight for records with the same priority. Clients will use the hosts of the same (lowest) priority with a probability proportional to the weight given. (NBO)

port: u16

TCP or UDP port of the service. (NBO)

Trait Implementations

impl Clone for GNUNET_TUN_DnsSrvRecord[src]

impl Copy for GNUNET_TUN_DnsSrvRecord[src]

impl Debug for GNUNET_TUN_DnsSrvRecord[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.