[][src]Struct hat_trie::DenseVecTrieNode

pub struct DenseVecTrieNode<K, V> where
    K: AsPrimitive<usize> + Bounded + Copy + Debug + Hash + FromPrimitive + PartialEq + PartialOrd + Sized + Unsigned,
    Box<[K]>: Clone + PartialEq,
    V: Clone + Default
{ /* fields omitted */ }

Implementations

impl<K, V> DenseVecTrieNode<K, V> where
    K: Copy + AsPrimitive<usize> + Bounded + Debug + Hash + FromPrimitive + PartialEq + PartialOrd + Sized + Unsigned,
    Box<[K]>: Clone + PartialEq,
    V: Clone + Default
[src]

pub fn new() -> DenseVecTrieNode<K, V>[src]

Trait Implementations

impl<K: Clone, V: Clone> Clone for DenseVecTrieNode<K, V> where
    K: AsPrimitive<usize> + Bounded + Copy + Debug + Hash + FromPrimitive + PartialEq + PartialOrd + Sized + Unsigned,
    Box<[K]>: Clone + PartialEq,
    V: Clone + Default
[src]

impl<K: Debug, V: Debug> Debug for DenseVecTrieNode<K, V> where
    K: AsPrimitive<usize> + Bounded + Copy + Debug + Hash + FromPrimitive + PartialEq + PartialOrd + Sized + Unsigned,
    Box<[K]>: Clone + PartialEq,
    V: Clone + Default
[src]

impl<K, V> TrieNode<K, V> for DenseVecTrieNode<K, V> where
    K: AsPrimitive<usize> + Bounded + Copy + Debug + Hash + FromPrimitive + PartialEq + PartialOrd + Sized + Unsigned,
    Box<[K]>: Clone + PartialEq,
    V: Clone + Default
[src]

Auto Trait Implementations

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

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

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

impl<K, V> Unpin for DenseVecTrieNode<K, V> where
    K: Unpin,
    V: Unpin

impl<K, V> UnwindSafe for DenseVecTrieNode<K, V> where
    K: RefUnwindSafe + UnwindSafe,
    V: RefUnwindSafe + UnwindSafe

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