pub enum TableEnsure {
Created,
Unchanged,
}Expand description
What table_ensure found (the boot verb — see the embedded docs).
Variants§
Created
The table did not exist; it was declared and its indexes built.
Unchanged
An identical declaration already exists; nothing was touched.
Trait Implementations§
Source§impl Clone for TableEnsure
impl Clone for TableEnsure
Source§fn clone(&self) -> TableEnsure
fn clone(&self) -> TableEnsure
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 TableEnsure
Source§impl Debug for TableEnsure
impl Debug for TableEnsure
impl Eq for TableEnsure
Source§impl PartialEq for TableEnsure
impl PartialEq for TableEnsure
impl StructuralPartialEq for TableEnsure
Auto Trait Implementations§
impl Freeze for TableEnsure
impl RefUnwindSafe for TableEnsure
impl Send for TableEnsure
impl Sync for TableEnsure
impl Unpin for TableEnsure
impl UnsafeUnpin for TableEnsure
impl UnwindSafe for TableEnsure
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