[][src]Struct alias_trie::Trie

pub struct Trie<K, V> { /* fields omitted */ }

Implementations

impl<K, V> Trie<K, V> where
    K: Eq + Hash + Clone + Debug,
    V: Debug
[src]

pub fn new() -> Self[src]

pub fn insert(&mut self, path: &[K], value: V)[src]

pub fn update_aliases<Q: ?Sized>(
    &mut self,
    path: &[&Q],
    aliases: &[&[K]]
) -> bool where
    K: Borrow<Q>,
    Q: Hash + Eq + Debug
[src]

pub fn get<Q: ?Sized>(&self, path: &[&Q]) -> UniqueOption<&V> where
    K: Borrow<Q>,
    Q: Hash + Eq + Debug
[src]

pub fn get_mut<Q: ?Sized>(&mut self, path: &[&Q]) -> UniqueOption<&mut V> where
    K: Borrow<Q>,
    Q: Hash + Eq + Debug
[src]

Trait Implementations

impl<K: Debug, V: Debug> Debug for Trie<K, V>[src]

Auto Trait Implementations

impl<K, V> RefUnwindSafe for Trie<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

impl<K, V> !Send for Trie<K, V>

impl<K, V> !Sync for Trie<K, V>

impl<K, V> Unpin for Trie<K, V>

impl<K, V> UnwindSafe for Trie<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

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, 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.