pub struct SyncableGraph {
pub nodes: RecordBatch,
pub edges: RecordBatch,
pub body_hashes: HashMap<String, String>,
}Expand description
The subset of graph state needed for sync operations.
Fields§
§nodes: RecordBatch§edges: RecordBatch§body_hashes: HashMap<String, String>Track body hashes for conflict detection.
Auto Trait Implementations§
impl !RefUnwindSafe for SyncableGraph
impl !UnwindSafe for SyncableGraph
impl Freeze for SyncableGraph
impl Send for SyncableGraph
impl Sync for SyncableGraph
impl Unpin for SyncableGraph
impl UnsafeUnpin for SyncableGraph
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