pub enum EdgeSnapshot {
Strong {
edge: EdgeId,
target: ManagedId,
},
Weak {
edge: EdgeId,
target: ManagedId,
},
Ephemeron {
edge: EdgeId,
key: ManagedId,
value: ManagedId,
},
}Expand description
One allocation-ordered edge in a deterministic node snapshot.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EdgeSnapshot
impl Clone for EdgeSnapshot
Source§fn clone(&self) -> EdgeSnapshot
fn clone(&self) -> EdgeSnapshot
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 moreimpl Copy for EdgeSnapshot
Source§impl Debug for EdgeSnapshot
impl Debug for EdgeSnapshot
impl Eq for EdgeSnapshot
Source§impl PartialEq for EdgeSnapshot
impl PartialEq for EdgeSnapshot
impl StructuralPartialEq for EdgeSnapshot
Auto Trait Implementations§
impl Freeze for EdgeSnapshot
impl RefUnwindSafe for EdgeSnapshot
impl Send for EdgeSnapshot
impl Sync for EdgeSnapshot
impl Unpin for EdgeSnapshot
impl UnsafeUnpin for EdgeSnapshot
impl UnwindSafe for EdgeSnapshot
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