pub enum ColumnSetting {
PrimaryKey,
NotNull,
Null,
Unique,
Increment,
Default(DefaultValue),
Note(StringLiteral),
Ref(InlineRef),
}Variants§
Trait Implementations§
Source§impl Clone for ColumnSetting
impl Clone for ColumnSetting
Source§fn clone(&self) -> ColumnSetting
fn clone(&self) -> ColumnSetting
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 moreAuto Trait Implementations§
impl Freeze for ColumnSetting
impl RefUnwindSafe for ColumnSetting
impl Send for ColumnSetting
impl Sync for ColumnSetting
impl Unpin for ColumnSetting
impl UnwindSafe for ColumnSetting
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