[][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]

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,