[][src]Struct nt::EntryData

pub struct EntryData {
    pub name: String,
    pub flags: u8,
    pub value: EntryValue,
    pub seqnum: u16,
}

Struct containing the data associated with an entry. Used interally to store entries

Fields

name: String

The id associated with this entry The name associated with this entry

flags: u8

The flags associated with this entry

value: EntryValue

The value associated with this entry

seqnum: u16

The most recent sequence number associated with this entry

Methods

impl EntryData[src]

pub fn new(name: String, flags: u8, value: EntryValue) -> EntryData[src]

Creates a new EntryData with the given parameters, and a sequence number of 1

pub fn entry_type(&self) -> EntryType[src]

Returns the type of the value of self

Trait Implementations

impl PartialEq<EntryData> for EntryData[src]

impl Clone for EntryData[src]

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

Performs copy-assignment from source. Read more

impl Debug for EntryData[src]

impl Serialize for EntryData[src]

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

Auto Trait Implementations

impl Send for EntryData

impl Sync for EntryData

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

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