#[repr(i32)]pub enum TableLikeOption {
Undefined = 0,
CreateTableLikeComments = 1,
CreateTableLikeConstraints = 2,
CreateTableLikeDefaults = 3,
CreateTableLikeGenerated = 4,
CreateTableLikeIdentity = 5,
CreateTableLikeIndexes = 6,
CreateTableLikeStatistics = 7,
CreateTableLikeStorage = 8,
CreateTableLikeAll = 9,
}
Variants§
Undefined = 0
CreateTableLikeComments = 1
CreateTableLikeConstraints = 2
CreateTableLikeDefaults = 3
CreateTableLikeGenerated = 4
CreateTableLikeIdentity = 5
CreateTableLikeIndexes = 6
CreateTableLikeStatistics = 7
CreateTableLikeStorage = 8
CreateTableLikeAll = 9
Implementations§
Trait Implementations§
Source§impl Clone for TableLikeOption
impl Clone for TableLikeOption
Source§fn clone(&self) -> TableLikeOption
fn clone(&self) -> TableLikeOption
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 moreSource§impl Debug for TableLikeOption
impl Debug for TableLikeOption
Source§impl Default for TableLikeOption
impl Default for TableLikeOption
Source§fn default() -> TableLikeOption
fn default() -> TableLikeOption
Returns the “default value” for a type. Read more
Source§impl From<TableLikeOption> for i32
impl From<TableLikeOption> for i32
Source§fn from(value: TableLikeOption) -> i32
fn from(value: TableLikeOption) -> i32
Converts to this type from the input type.
Source§impl Hash for TableLikeOption
impl Hash for TableLikeOption
Source§impl Ord for TableLikeOption
impl Ord for TableLikeOption
Source§fn cmp(&self, other: &TableLikeOption) -> Ordering
fn cmp(&self, other: &TableLikeOption) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TableLikeOption
impl PartialEq for TableLikeOption
Source§impl PartialOrd for TableLikeOption
impl PartialOrd for TableLikeOption
impl Copy for TableLikeOption
impl Eq for TableLikeOption
impl StructuralPartialEq for TableLikeOption
Auto Trait Implementations§
impl Freeze for TableLikeOption
impl RefUnwindSafe for TableLikeOption
impl Send for TableLikeOption
impl Sync for TableLikeOption
impl Unpin for TableLikeOption
impl UnwindSafe for TableLikeOption
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