Enum datafusion_expr::TableType
source · pub enum TableType {
Base,
View,
Temporary,
}
Expand description
Indicates the type of this table for metadata/catalog purposes.
Variants
Base
An ordinary physical table.
View
A non-materialised table that itself uses a query internally to provide data.
Temporary
A transient table.
Trait Implementations
impl Copy for TableType
impl Eq for TableType
impl StructuralEq for TableType
impl StructuralPartialEq for TableType
Auto Trait Implementations
impl RefUnwindSafe for TableType
impl Send for TableType
impl Sync for TableType
impl Unpin for TableType
impl UnwindSafe for TableType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more