pub struct Parent<V> {
pub ptr: NodePtr,
pub coordinates: V,
pub child_index: ChildIndex,
}
Expand description
Info about a node’s parent.
Fields
ptr: NodePtr
coordinates: V
child_index: ChildIndex
Trait Implementations
Auto Trait Implementations
impl<V> RefUnwindSafe for Parent<V> where
V: RefUnwindSafe,
impl<V> UnwindSafe for Parent<V> where
V: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more