Enum charcoal::TryRemoveBranchError[][src]

pub enum TryRemoveBranchError {
    WasRootNode,
    WasLeafNode,
    HadBranchChild(u32),
    CannotRemoveIndividualChildren,
}

The error type returned by methods on trees which remove branch nodes.

Variants

WasRootNode

The node was the root node, which cannot be removed.

WasLeafNode

The node a leaf node and thus should be removed with try_remove_leaf_with or a similar method.

HadBranchChild(u32)

One of the node’s children was a branch node, which would require recursion to remove. Contains the index of the offending node; if there were multiple, the smallest index is specified.

CannotRemoveIndividualChildren

The tree does not support removing individual children or such support was manually disabled.

Trait Implementations

impl Clone for TryRemoveBranchError[src]

impl Copy for TryRemoveBranchError[src]

impl Debug for TryRemoveBranchError[src]

impl Display for TryRemoveBranchError[src]

impl Eq for TryRemoveBranchError[src]

impl Error for TryRemoveBranchError[src]

This is supported on crate feature std only.

impl Hash for TryRemoveBranchError[src]

impl PartialEq<TryRemoveBranchError> for TryRemoveBranchError[src]

impl StructuralEq for TryRemoveBranchError[src]

impl StructuralPartialEq for TryRemoveBranchError[src]

Auto Trait Implementations

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> Slottable for T where
    T: Copy
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.