pub enum ElementStatus {
Valid,
Deleted,
}Expand description
Describe the status of accessing a vector by internal or external id.
Variants§
Valid
The ID is valid.
Deleted
The ID used to be valid but points to a deleted element. Some values behind the deleted may still be accessible until it is removed entirely from the graph.
Implementations§
Source§impl ElementStatus
impl ElementStatus
Trait Implementations§
Source§impl Clone for ElementStatus
impl Clone for ElementStatus
Source§fn clone(&self) -> ElementStatus
fn clone(&self) -> ElementStatus
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 ElementStatus
Source§impl Debug for ElementStatus
impl Debug for ElementStatus
Source§impl PartialEq for ElementStatus
impl PartialEq for ElementStatus
Source§fn eq(&self, other: &ElementStatus) -> bool
fn eq(&self, other: &ElementStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ElementStatus
Auto Trait Implementations§
impl Freeze for ElementStatus
impl RefUnwindSafe for ElementStatus
impl Send for ElementStatus
impl Sync for ElementStatus
impl Unpin for ElementStatus
impl UnsafeUnpin for ElementStatus
impl UnwindSafe for ElementStatus
Blanket Implementations§
impl<T> AsyncFriendly for T
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