pub struct UnifiedNodeRepresentation<Data: Debug> {
pub children: VecDeque<UnifiedNodeRepresentation<Data>>,
pub data: Data,
}
Available on crate feature
unified
only.Expand description
The representation of a unified node after it has been removed from the arena.
Fields§
§children: VecDeque<UnifiedNodeRepresentation<Data>>
§data: Data
Trait Implementations§
source§impl<Data: Clone + Debug> Clone for UnifiedNodeRepresentation<Data>
impl<Data: Clone + Debug> Clone for UnifiedNodeRepresentation<Data>
source§fn clone(&self) -> UnifiedNodeRepresentation<Data>
fn clone(&self) -> UnifiedNodeRepresentation<Data>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<Data: PartialEq + Debug> PartialEq for UnifiedNodeRepresentation<Data>
impl<Data: PartialEq + Debug> PartialEq for UnifiedNodeRepresentation<Data>
source§fn eq(&self, other: &UnifiedNodeRepresentation<Data>) -> bool
fn eq(&self, other: &UnifiedNodeRepresentation<Data>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<Data: Eq + Debug> Eq for UnifiedNodeRepresentation<Data>
impl<Data: Debug> StructuralEq for UnifiedNodeRepresentation<Data>
impl<Data: Debug> StructuralPartialEq for UnifiedNodeRepresentation<Data>
Auto Trait Implementations§
impl<Data> RefUnwindSafe for UnifiedNodeRepresentation<Data>where
Data: RefUnwindSafe,
impl<Data> Send for UnifiedNodeRepresentation<Data>where
Data: Send,
impl<Data> Sync for UnifiedNodeRepresentation<Data>where
Data: Sync,
impl<Data> Unpin for UnifiedNodeRepresentation<Data>where
Data: Unpin,
impl<Data> UnwindSafe for UnifiedNodeRepresentation<Data>where
Data: 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