Struct shortcut::idx::BTreeIndex[][src]

pub struct BTreeIndex<K: Ord + Eq> { /* fields omitted */ }

An implementation of RangeIndex using a BTreeMap.

Implementations

impl<K: Ord + Eq> BTreeIndex<K>[src]

pub fn new() -> BTreeIndex<K>[src]

Allocate a new BTreeIndex.

Trait Implementations

impl<K: Clone + Ord + Eq> Clone for BTreeIndex<K>[src]

impl<T: Ord + Eq> EqualityIndex<T> for BTreeIndex<T>[src]

impl<T: Ord + Eq + 'static + Send + Sync> From<BTreeIndex<T>> for Index<T>[src]

impl<T: Ord + Eq> RangeIndex<T> for BTreeIndex<T>[src]

Auto Trait Implementations

impl<K> RefUnwindSafe for BTreeIndex<K> where
    K: RefUnwindSafe

impl<K> Send for BTreeIndex<K> where
    K: Send

impl<K> Sync for BTreeIndex<K> where
    K: Sync

impl<K> Unpin for BTreeIndex<K>

impl<K> UnwindSafe for BTreeIndex<K> where
    K: 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> 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.