pub enum EdgeStorageRef<'a> {
Mem(MemEdge<'a>),
}Variants§
Trait Implementations§
Source§impl<'a> Clone for EdgeStorageRef<'a>
impl<'a> Clone for EdgeStorageRef<'a>
Source§fn clone(&self) -> EdgeStorageRef<'a>
fn clone(&self) -> EdgeStorageRef<'a>
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<'a> Debug for EdgeStorageRef<'a>
impl<'a> Debug for EdgeStorageRef<'a>
Source§impl<'a> EdgeStorageOps<'a> for EdgeStorageRef<'a>
impl<'a> EdgeStorageOps<'a> for EdgeStorageRef<'a>
Source§fn added(self, layer_ids: &LayerIds, w: Range<i64>) -> bool
fn added(self, layer_ids: &LayerIds, w: Range<i64>) -> bool
Check if the edge was added in any of the layers during the time interval
fn has_layer(self, layer_ids: &LayerIds) -> bool
fn src(self) -> VID
fn dst(self) -> VID
fn eid(self) -> EID
fn layer_ids_iter( self, layer_ids: &'a LayerIds, ) -> impl Iterator<Item = usize> + 'a
fn layer_ids_par_iter( self, layer_ids: &LayerIds, ) -> impl ParallelIterator<Item = usize> + 'a
fn additions_iter( self, layer_ids: &'a LayerIds, ) -> impl Iterator<Item = (usize, TimeIndexRef<'a>)> + 'a
fn additions_par_iter( self, layer_ids: &LayerIds, ) -> impl ParallelIterator<Item = (usize, TimeIndexRef<'a>)> + 'a
fn deletions_iter( self, layer_ids: &'a LayerIds, ) -> impl Iterator<Item = (usize, TimeIndexRef<'a>)> + 'a
fn deletions_par_iter( self, layer_ids: &LayerIds, ) -> impl ParallelIterator<Item = (usize, TimeIndexRef<'a>)> + 'a
fn updates_iter( self, layer_ids: &'a LayerIds, ) -> impl Iterator<Item = (usize, TimeIndexRef<'a>, TimeIndexRef<'a>)> + 'a
fn updates_par_iter( self, layer_ids: &LayerIds, ) -> impl ParallelIterator<Item = (usize, TimeIndexRef<'a>, TimeIndexRef<'a>)> + 'a
fn additions(self, layer_id: usize) -> TimeIndexRef<'a>
fn deletions(self, layer_id: usize) -> TimeIndexRef<'a>
fn temporal_prop_layer( self, layer_id: usize, prop_id: usize, ) -> impl TPropOps<'a> + 'a
fn metadata_layer(self, layer_id: usize, prop_id: usize) -> Option<Prop>
fn edge_ref(self, dir: Dir) -> EdgeRef
fn out_ref(self) -> EdgeRef
Source§fn deleted(self, layer_ids: &'a LayerIds, w: Range<i64>) -> bool
fn deleted(self, layer_ids: &'a LayerIds, w: Range<i64>) -> bool
Check if the edge was deleted in any of the layers during the time interval
fn temporal_prop_iter( self, layer_ids: &'a LayerIds, prop_id: usize, ) -> impl Iterator<Item = (usize, impl TPropOps<'a>)> + 'a
fn temporal_prop_par_iter( self, layer_ids: &LayerIds, prop_id: usize, ) -> impl ParallelIterator<Item = (usize, impl TPropOps<'a>)> + 'a
fn metadata_iter( self, layer_ids: &'a LayerIds, prop_id: usize, ) -> impl Iterator<Item = (usize, Prop)> + 'a
impl<'a> Copy for EdgeStorageRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for EdgeStorageRef<'a>
impl<'a> RefUnwindSafe for EdgeStorageRef<'a>
impl<'a> Send for EdgeStorageRef<'a>
impl<'a> Sync for EdgeStorageRef<'a>
impl<'a> Unpin for EdgeStorageRef<'a>
impl<'a> UnsafeUnpin for EdgeStorageRef<'a>
impl<'a> UnwindSafe for EdgeStorageRef<'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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more