[][src]Struct dns_online::Record

pub struct Record {
    pub id: usize,
    pub name: String,
    pub record_type: DNSType,
    pub ttl: usize,
    pub data: String,
}

A DNS entry. The query type is stored as a string ("TXT", "AAAA", ...).

Fields

id: usizename: Stringrecord_type: DNSTypettl: usizedata: String

Methods

impl Record[src]

pub fn new(
    entry_name: impl Into<String>,
    entry_type: impl Into<DNSType>,
    entry_value: impl Into<String>,
    entry_ttl: usize
) -> Record
[src]

Trait Implementations

impl Clone for Record[src]

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

Performs copy-assignment from source. Read more

impl Debug for Record[src]

impl Serialize for Record[src]

impl<'de> Deserialize<'de> for Record[src]

Auto Trait Implementations

impl Send for Record

impl Unpin for Record

impl Sync for Record

impl UnwindSafe for Record

impl RefUnwindSafe for Record

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]