pub enum Overriding {
System,
User,
}Expand description
OVERRIDING { SYSTEM | USER } VALUE, an INSERT’s treatment of an identity
column.
Variants§
System
OVERRIDING SYSTEM VALUE — write the supplied value into a
GENERATED ALWAYS identity column.
User
OVERRIDING USER VALUE — ignore the supplied value and use the sequence,
for a GENERATED BY DEFAULT column.
Implementations§
Trait Implementations§
Source§impl Clone for Overriding
impl Clone for Overriding
Source§fn clone(&self) -> Overriding
fn clone(&self) -> Overriding
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 Overriding
Source§impl Debug for Overriding
impl Debug for Overriding
impl Eq for Overriding
Source§impl PartialEq for Overriding
impl PartialEq for Overriding
impl StructuralPartialEq for Overriding
Auto Trait Implementations§
impl Freeze for Overriding
impl RefUnwindSafe for Overriding
impl Send for Overriding
impl Sync for Overriding
impl Unpin for Overriding
impl UnsafeUnpin for Overriding
impl UnwindSafe for Overriding
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