pub enum VersionRecord {
Node(NodeRecord),
Relationship(RelationshipRecord),
}Expand description
A version record capturing the state of a node or relationship at a point in time.
Variants§
Node(NodeRecord)
Snapshot of a node record.
Relationship(RelationshipRecord)
Snapshot of a relationship record.
Trait Implementations§
Source§impl Clone for VersionRecord
impl Clone for VersionRecord
Source§fn clone(&self) -> VersionRecord
fn clone(&self) -> VersionRecord
Returns a duplicate 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 Debug for VersionRecord
impl Debug for VersionRecord
Source§impl PartialEq for VersionRecord
impl PartialEq for VersionRecord
impl StructuralPartialEq for VersionRecord
Auto Trait Implementations§
impl Freeze for VersionRecord
impl RefUnwindSafe for VersionRecord
impl Send for VersionRecord
impl Sync for VersionRecord
impl Unpin for VersionRecord
impl UnsafeUnpin for VersionRecord
impl UnwindSafe for VersionRecord
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