[][src]Struct redblackbst::RedBlackBST

pub struct RedBlackBST<Key: Ord, Value> { /* fields omitted */ }

Methods

impl<Key: Ord, Value> RedBlackBST<Key, Value>[src]

pub fn new() -> Self[src]

pub fn size(&self) -> u64[src]

pub fn put(&mut self, key: Key, value: Value)[src]

pub fn get(&self, key: Key) -> Option<&Value>[src]

pub fn contains(&self, key: Key) -> bool[src]

pub fn height(&self) -> u64[src]

pub fn is_empty(&self) -> bool[src]

pub fn min(&self) -> Option<&Key>[src]

pub fn max(&self) -> Option<&Key>[src]

Trait Implementations

impl<Key: Ord, Value> Default for RedBlackBST<Key, Value>[src]

impl<Key: Debug + Ord, Value: Debug> Debug for RedBlackBST<Key, Value>[src]

Auto Trait Implementations

impl<Key, Value> Send for RedBlackBST<Key, Value> where
    Key: Send,
    Value: Send

impl<Key, Value> Sync for RedBlackBST<Key, Value> where
    Key: Sync,
    Value: Sync

impl<Key, Value> Unpin for RedBlackBST<Key, Value> where
    Key: Unpin,
    Value: Unpin

impl<Key, Value> UnwindSafe for RedBlackBST<Key, Value> where
    Key: UnwindSafe,
    Value: UnwindSafe

impl<Key, Value> RefUnwindSafe for RedBlackBST<Key, Value> where
    Key: RefUnwindSafe,
    Value: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]