[][src]Struct radix_trie::SubTrieMut

pub struct SubTrieMut<'a, K: 'a, V: 'a> { /* fields omitted */ }

Mutable view of a sub-tree of a larger trie.

Implementations

impl<'a, K, V> SubTrieMut<'a, K, V> where
    K: TrieKey
[src]

pub fn value_mut(&mut self) -> Option<&mut V>[src]

Mutable reference to the node's value.

pub fn get<Q: ?Sized>(&self, key: &Q) -> SubTrieResult<&V> where
    K: Borrow<Q>,
    Q: TrieKey
[src]

Look up the value for the given key, which should be an extension of this subtrie's key.

The key may be any borrowed form of the trie's key type, but TrieKey on the borrowed form must match those for the key type

pub fn insert(&mut self, key: K, value: V) -> SubTrieResult<V>[src]

Insert a value in this subtrie. The key should be an extension of this subtrie's key.

pub fn remove<Q: ?Sized>(&mut self, key: &Q) -> SubTrieResult<V> where
    K: Borrow<Q>,
    Q: TrieKey
[src]

Remove a value from this subtrie. The key should be an extension of this subtrie's key.

The key may be any borrowed form of the trie's key type, but TrieKey on the borrowed form must match those for the key type

Trait Implementations

impl<'a, K: Debug + 'a, V: Debug + 'a> Debug for SubTrieMut<'a, K, V>[src]

impl<'a, K: 'a, V: 'a> TrieCommon<'a, K, V> for SubTrieMut<'a, K, V> where
    K: TrieKey
[src]

fn len(self) -> usize[src]

Computes from scratch.

impl<'a: 'b, 'b, K: 'a, V: 'a> TrieCommon<'b, K, V> for &'b SubTrieMut<'a, K, V> where
    K: TrieKey
[src]

Auto Trait Implementations

impl<'a, K, V> RefUnwindSafe for SubTrieMut<'a, K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe

impl<'a, K, V> Send for SubTrieMut<'a, K, V> where
    K: Send,
    V: Send

impl<'a, K, V> Sync for SubTrieMut<'a, K, V> where
    K: Sync,
    V: Sync

impl<'a, K, V> Unpin for SubTrieMut<'a, K, V>

impl<'a, K, V> !UnwindSafe for SubTrieMut<'a, K, V>

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.