pub struct NodeHistory {
pub node_id: NodeId,
pub frontier: Vec<TransactionId>,
pub visible: Option<TransactionId>,
pub entries: Vec<HistoryEntry>,
}Fields§
§node_id: NodeId§frontier: Vec<TransactionId>§visible: Option<TransactionId>§entries: Vec<HistoryEntry>Trait Implementations§
Source§impl Clone for NodeHistory
impl Clone for NodeHistory
Source§fn clone(&self) -> NodeHistory
fn clone(&self) -> NodeHistory
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NodeHistory
impl Debug for NodeHistory
impl Eq for NodeHistory
Source§impl PartialEq for NodeHistory
impl PartialEq for NodeHistory
impl StructuralPartialEq for NodeHistory
Auto Trait Implementations§
impl Freeze for NodeHistory
impl RefUnwindSafe for NodeHistory
impl Send for NodeHistory
impl Sync for NodeHistory
impl Unpin for NodeHistory
impl UnsafeUnpin for NodeHistory
impl UnwindSafe for NodeHistory
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