pub struct Edge<V> {
pub metadata: u64,
pub child: Child<V>,
}Expand description
A compressed edge and its child.
Fields§
§metadata: u64Arctic compressed-edge bits with transient flags cleared.
child: Child<V>Value or adaptive node reached by this edge.
Trait Implementations§
impl<V: Eq> Eq for Edge<V>
impl<V: PartialEq> StructuralPartialEq for Edge<V>
Auto Trait Implementations§
impl<V> Freeze for Edge<V>where
V: Freeze,
impl<V> RefUnwindSafe for Edge<V>where
V: RefUnwindSafe,
impl<V> Send for Edge<V>where
V: Send,
impl<V> Sync for Edge<V>where
V: Sync,
impl<V> Unpin for Edge<V>where
V: Unpin,
impl<V> UnsafeUnpin for Edge<V>where
V: UnsafeUnpin,
impl<V> UnwindSafe for Edge<V>where
V: 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