Struct dic::Entry[][src]

pub struct Entry<T> {
    pub name: String,
    pub value: Option<T>,
}

Fields

Trait Implementations

impl<T: Clone> Clone for Entry<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for Entry<T>
[src]

Formats the value using the given formatter. Read more

impl<T: PartialEq> PartialEq for Entry<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl<T> Send for Entry<T> where
    T: Send

impl<T> Sync for Entry<T> where
    T: Sync