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
Tests for
self
and other
values to be equal, and is used by ==
.impl<Data: Eq + Debug> Eq for UnifiedNodeRepresentation<Data>
impl<Data: Debug> StructuralPartialEq for UnifiedNodeRepresentation<Data>
Auto Trait Implementations§
impl<Data> Freeze for UnifiedNodeRepresentation<Data>where
Data: Freeze,
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