pub enum InsertOutcome {
Inserted,
Duplicate,
}
Expand description
Outcome when inserting a node index into SharedCompletedNodes
.
Variants§
Inserted
This index was not previously present; now inserted.
Duplicate
This index was already in the set; no change.
Trait Implementations§
Source§impl Clone for InsertOutcome
impl Clone for InsertOutcome
Source§fn clone(&self) -> InsertOutcome
fn clone(&self) -> InsertOutcome
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 Debug for InsertOutcome
impl Debug for InsertOutcome
Source§impl PartialEq for InsertOutcome
impl PartialEq for InsertOutcome
impl Copy for InsertOutcome
impl Eq for InsertOutcome
impl StructuralPartialEq for InsertOutcome
Auto Trait Implementations§
impl Freeze for InsertOutcome
impl RefUnwindSafe for InsertOutcome
impl Send for InsertOutcome
impl Sync for InsertOutcome
impl Unpin for InsertOutcome
impl UnwindSafe for InsertOutcome
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