pub enum TableKind {
Base,
View,
Temporary,
External,
Other,
}Expand description
Broad table families.
Variants§
Base
A base table.
View
A view-like table.
Temporary
A temporary table.
External
A foreign or external table.
Other
Other or unspecified table kind.
Trait Implementations§
Source§impl Ord for TableKind
impl Ord for TableKind
1.21.0 (const: unstable) · 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 PartialOrd for TableKind
impl PartialOrd for TableKind
impl Copy for TableKind
impl Eq for TableKind
impl StructuralPartialEq for TableKind
Auto Trait Implementations§
impl Freeze for TableKind
impl RefUnwindSafe for TableKind
impl Send for TableKind
impl Sync for TableKind
impl Unpin for TableKind
impl UnsafeUnpin for TableKind
impl UnwindSafe for TableKind
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