pub enum IfNotExists {
Skip,
Refuse,
}Expand description
Whether a CREATE declared IF NOT EXISTS.
Variants§
Skip
The statement is a no-op when the object is already there.
Refuse
The statement fails when the object is already there.
Trait Implementations§
Source§impl Clone for IfNotExists
impl Clone for IfNotExists
impl Copy for IfNotExists
Source§impl Debug for IfNotExists
impl Debug for IfNotExists
impl Eq for IfNotExists
Source§impl PartialEq for IfNotExists
impl PartialEq for IfNotExists
impl StructuralPartialEq for IfNotExists
Auto Trait Implementations§
impl Freeze for IfNotExists
impl RefUnwindSafe for IfNotExists
impl Send for IfNotExists
impl Sync for IfNotExists
impl Unpin for IfNotExists
impl UnsafeUnpin for IfNotExists
impl UnwindSafe for IfNotExists
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