[][src]Struct ego_tree::Tree

pub struct Tree<T> { /* fields omitted */ }

Vec-backed ID-tree.

Always contains at least a root node.

Methods

impl<T> Tree<T>
[src]

Important traits for Values<'a, T>
pub fn values(&self) -> Values<T>
[src]

Returns an iterator over values in insert order.

Important traits for ValuesMut<'a, T>
pub fn values_mut(&mut self) -> ValuesMut<T>
[src]

Returns a mutable iterator over values in insert order.

Important traits for Nodes<'a, T>
pub fn nodes(&self) -> Nodes<T>
[src]

Returns an iterator over nodes in insert order.

impl<T> Tree<T>
[src]

pub fn new(root: T) -> Self
[src]

Creates a tree with a root node.

pub fn with_capacity(root: T, capacity: usize) -> Self
[src]

Creates a tree with a root node and the specified capacity.

pub fn get(&self, id: NodeId) -> Option<NodeRef<T>>
[src]

Returns a reference to the specified node.

pub fn get_mut(&mut self, id: NodeId) -> Option<NodeMut<T>>
[src]

Returns a mutator of the specified node.

pub unsafe fn get_unchecked(&self, id: NodeId) -> NodeRef<T>
[src]

Returns a reference to the specified node.

pub unsafe fn get_unchecked_mut(&mut self, id: NodeId) -> NodeMut<T>
[src]

Returns a mutator of the specified node.

pub fn root(&self) -> NodeRef<T>
[src]

Returns a reference to the root node.

pub fn root_mut(&mut self) -> NodeMut<T>
[src]

Returns a mutator of the root node.

pub fn orphan(&mut self, value: T) -> NodeMut<T>
[src]

Creates an orphan node.

Trait Implementations

impl<T> PartialEq<Tree<T>> for Tree<T> where
    T: PartialEq
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl<T> Eq for Tree<T> where
    T: Eq
[src]

impl<T> Clone for Tree<T> where
    T: Clone
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T> IntoIterator for Tree<T>
[src]

type Item = T

The type of the elements being iterated over.

type IntoIter = IntoIter<T>

Which kind of iterator are we turning this into?

impl<T: Debug> Debug for Tree<T>
[src]

impl<T> Hash for Tree<T> where
    T: Hash
[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<T> Send for Tree<T> where
    T: Send

impl<T> Sync for Tree<T> where
    T: Sync

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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