pub struct SnapshotView<'a> { /* private fields */ }Implementations§
Source§impl<'a> SnapshotView<'a>
impl<'a> SnapshotView<'a>
pub fn info(&self) -> &SnapshotInfo
pub fn next_node_id(&self) -> u64
pub fn next_rel_id(&self) -> u64
pub fn node_ids(&self) -> U64ColumnView<'a>
pub fn relationship_ids(&self) -> U64ColumnView<'a>
pub fn relationship_sources(&self) -> U64ColumnView<'a>
pub fn relationship_targets(&self) -> U64ColumnView<'a>
pub fn relationship_type_ids(&self) -> U32ColumnView<'a>
pub fn labels_for_node_index( &self, index: usize, ) -> Result<impl Iterator<Item = &'a str> + '_>
pub fn relationship_type(&self, type_id: u32) -> Option<&'a str>
Trait Implementations§
Source§impl<'a> Clone for SnapshotView<'a>
impl<'a> Clone for SnapshotView<'a>
Source§fn clone(&self) -> SnapshotView<'a>
fn clone(&self) -> SnapshotView<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for SnapshotView<'a>
impl<'a> RefUnwindSafe for SnapshotView<'a>
impl<'a> Send for SnapshotView<'a>
impl<'a> Sync for SnapshotView<'a>
impl<'a> Unpin for SnapshotView<'a>
impl<'a> UnsafeUnpin for SnapshotView<'a>
impl<'a> UnwindSafe for SnapshotView<'a>
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