pub struct TreeNode<N: Node> {
pub depth: usize,
pub elements: IndexSet<N>,
pub counter: usize,
}
Expand description
A node in a tree.
Fields§
§depth: usize
The current depth.
elements: IndexSet<N>
The current node.
counter: usize
A counter.
Implementations§
Source§impl<N: Node> TreeNode<N>
impl<N: Node> TreeNode<N>
Sourcepub fn new(elements: IndexSet<N>) -> Self
pub fn new(elements: IndexSet<N>) -> Self
Initializes a new TreeNode
from a vector of starting elements.
Sourcepub fn create_child(&mut self) -> TreeNode<N>
pub fn create_child(&mut self) -> TreeNode<N>
Adds a child to the current node.
Sourcepub fn remove_element(&mut self, element: &N) -> bool
pub fn remove_element(&mut self, element: &N) -> bool
Removes an element from the current node.
If the element does not exist, increment an internal counter which later used to generate an error that the user attempted to await a future twice.
Returns true
if the element was removed but not the first one in the node.
Trait Implementations§
impl<N: Eq + Node> Eq for TreeNode<N>
impl<N: Node> StructuralPartialEq for TreeNode<N>
Auto Trait Implementations§
impl<N> Freeze for TreeNode<N>
impl<N> RefUnwindSafe for TreeNode<N>where
N: RefUnwindSafe,
impl<N> Send for TreeNode<N>where
N: Send,
impl<N> Sync for TreeNode<N>where
N: Sync,
impl<N> Unpin for TreeNode<N>where
N: Unpin,
impl<N> UnwindSafe for TreeNode<N>where
N: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more