Struct gnunet_sys::GNUNET_DNSPARSER_CaaRecord[][src]

#[repr(C)]pub struct GNUNET_DNSPARSER_CaaRecord {
    pub flags: u8,
    pub tag_len: u8,
}

Information from CAA records (RFC 6844). The tag is followed by the tag_len. The value is followed by the tag for (d - tag_len - 2) bytes

Fields

flags: u8

The flags of the CAA record.

tag_len: u8

The length of the tag.

Trait Implementations

impl Clone for GNUNET_DNSPARSER_CaaRecord[src]

impl Copy for GNUNET_DNSPARSER_CaaRecord[src]

impl Debug for GNUNET_DNSPARSER_CaaRecord[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.