[][src]Struct ketos::name::NameStore

pub struct NameStore { /* fields omitted */ }

Maps interned Name values to their String representations

Methods

impl NameStore[src]

pub fn new() -> NameStore[src]

Constructs an empty NameStore.

pub fn add(&mut self, name: &str) -> Name[src]

Adds a name to the NameStore if it is not present. Returns a Name value to refer to the new or existing name.

pub fn get_name(&self, name: &str) -> Option<Name>[src]

Returns the Name value of a given string, if it exists.

pub fn get(&self, name: Name) -> &str[src]

Returns the string representation of an interned name.

Important traits for NameIter<'a>
pub fn iter(&self) -> NameIter[src]

Iterates over all stored names.

Trait Implementations

impl Clone for NameStore[src]

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

Performs copy-assignment from source. Read more

impl Debug for NameStore[src]

Auto Trait Implementations

impl Send for NameStore

impl Sync for NameStore

Blanket Implementations

impl<T> AnyValue for T where
    T: Any
[src]

impl<T, U> Into 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> From for T[src]

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> Any for T where
    T: 'static + ?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.