pub struct Record<HO> {
pub hash: HO,
pub data: Vec<u8>,
}
Expand description
The record of a visited node.
Fields§
§hash: HO
The hash of the node.
data: Vec<u8>
The data representing the node.
Trait Implementations§
source§impl<HO: PartialEq> PartialEq<Record<HO>> for Record<HO>
impl<HO: PartialEq> PartialEq<Record<HO>> for Record<HO>
impl<HO: Eq> Eq for Record<HO>
impl<HO> StructuralEq for Record<HO>
impl<HO> StructuralPartialEq for Record<HO>
Auto Trait Implementations§
impl<HO> RefUnwindSafe for Record<HO>where HO: RefUnwindSafe,
impl<HO> Send for Record<HO>where HO: Send,
impl<HO> Sync for Record<HO>where HO: Sync,
impl<HO> Unpin for Record<HO>where HO: Unpin,
impl<HO> UnwindSafe for Record<HO>where HO: 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