[][src]Struct starling::tree::tree_branch::TreeBranch

pub struct TreeBranch<ArrayType> where
    ArrayType: Array
{ /* fields omitted */ }

A struct representing a branch in the tree.

Trait Implementations

impl<ArrayType> Branch<ArrayType> for TreeBranch<ArrayType> where
    ArrayType: Array
[src]

impl<ArrayType: Clone> Clone for TreeBranch<ArrayType> where
    ArrayType: Array
[src]

impl<ArrayType: Copy> Copy for TreeBranch<ArrayType> where
    ArrayType: Array
[src]

impl<ArrayType: Debug> Debug for TreeBranch<ArrayType> where
    ArrayType: Array
[src]

impl<ArrayType: Eq> Eq for TreeBranch<ArrayType> where
    ArrayType: Array
[src]

impl<ArrayType> Node<TreeBranch<ArrayType>, TreeLeaf<ArrayType>, TreeData, ArrayType> for TreeNode<ArrayType> where
    ArrayType: Array
[src]

impl<ArrayType: PartialEq> PartialEq<TreeBranch<ArrayType>> for TreeBranch<ArrayType> where
    ArrayType: Array
[src]

impl<ArrayType> StructuralEq for TreeBranch<ArrayType> where
    ArrayType: Array
[src]

impl<ArrayType> StructuralPartialEq for TreeBranch<ArrayType> where
    ArrayType: Array
[src]

Auto Trait Implementations

impl<ArrayType> RefUnwindSafe for TreeBranch<ArrayType> where
    ArrayType: RefUnwindSafe

impl<ArrayType> Send for TreeBranch<ArrayType> where
    ArrayType: Send

impl<ArrayType> Sync for TreeBranch<ArrayType> where
    ArrayType: Sync

impl<ArrayType> Unpin for TreeBranch<ArrayType> where
    ArrayType: Unpin

impl<ArrayType> UnwindSafe for TreeBranch<ArrayType> where
    ArrayType: 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.