pub struct IngestResult {
pub new_node_ids: Vec<u64>,
pub new_edge_count: usize,
pub touched_node_ids: Vec<u64>,
}Expand description
Result of an ingest operation.
Fields§
§new_node_ids: Vec<u64>IDs of newly created nodes.
new_edge_count: usizeNumber of new edges created.
touched_node_ids: Vec<u64>IDs of nodes that were updated (touch count, last_accessed).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IngestResult
impl RefUnwindSafe for IngestResult
impl Send for IngestResult
impl Sync for IngestResult
impl Unpin for IngestResult
impl UnsafeUnpin for IngestResult
impl UnwindSafe for IngestResult
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