[][src]Struct red_black::RBTree

pub struct RBTree<N: Node> { /* fields omitted */ }

Implementations

impl<N: Node> RBTree<N>[src]

pub fn new() -> RBTree<N>[src]

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

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

pub fn insert(&mut self, node: &N) -> bool[src]

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

Auto Trait Implementations

impl<N> RefUnwindSafe for RBTree<N> where
    <N as Node>::Ptr: RefUnwindSafe

impl<N> Send for RBTree<N> where
    <N as Node>::Ptr: Send

impl<N> Sync for RBTree<N> where
    <N as Node>::Ptr: Sync

impl<N> Unpin for RBTree<N> where
    <N as Node>::Ptr: Unpin

impl<N> UnwindSafe for RBTree<N> where
    <N as Node>::Ptr: 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, 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>,