pub enum CreateIndexOutcome {
Created(IndexDefinition),
NoOpExists(IndexDefinition),
}Variants§
Created(IndexDefinition)
A new index was registered.
NoOpExists(IndexDefinition)
The request was idempotent (IF NOT EXISTS) and matched an existing entry.
Trait Implementations§
Source§impl Clone for CreateIndexOutcome
impl Clone for CreateIndexOutcome
Source§fn clone(&self) -> CreateIndexOutcome
fn clone(&self) -> CreateIndexOutcome
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 Freeze for CreateIndexOutcome
impl RefUnwindSafe for CreateIndexOutcome
impl Send for CreateIndexOutcome
impl Sync for CreateIndexOutcome
impl Unpin for CreateIndexOutcome
impl UnsafeUnpin for CreateIndexOutcome
impl UnwindSafe for CreateIndexOutcome
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