pub enum PgTableKind {
Ordinary,
Partitioned,
Foreign,
Temporary,
View,
MaterializedView,
Toast,
}Expand description
PostgreSQL table-like object kinds.
Variants§
Ordinary
Ordinary heap table.
Partitioned
Declarative partitioned table.
Foreign
Foreign table backed by a foreign data wrapper.
Temporary
Temporary table object.
View
PostgreSQL view.
MaterializedView
PostgreSQL materialized view.
Toast
Toast table metadata label.
Implementations§
Trait Implementations§
Source§impl Clone for PgTableKind
impl Clone for PgTableKind
Source§fn clone(&self) -> PgTableKind
fn clone(&self) -> PgTableKind
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 moreSource§impl Debug for PgTableKind
impl Debug for PgTableKind
Source§impl Default for PgTableKind
impl Default for PgTableKind
Source§fn default() -> PgTableKind
fn default() -> PgTableKind
Returns the “default value” for a type. Read more
Source§impl Display for PgTableKind
impl Display for PgTableKind
Source§impl FromStr for PgTableKind
impl FromStr for PgTableKind
Source§impl Hash for PgTableKind
impl Hash for PgTableKind
Source§impl Ord for PgTableKind
impl Ord for PgTableKind
Source§fn cmp(&self, other: &PgTableKind) -> Ordering
fn cmp(&self, other: &PgTableKind) -> Ordering
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 PartialEq for PgTableKind
impl PartialEq for PgTableKind
Source§fn eq(&self, other: &PgTableKind) -> bool
fn eq(&self, other: &PgTableKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PgTableKind
impl PartialOrd for PgTableKind
impl Copy for PgTableKind
impl Eq for PgTableKind
impl StructuralPartialEq for PgTableKind
Auto Trait Implementations§
impl Freeze for PgTableKind
impl RefUnwindSafe for PgTableKind
impl Send for PgTableKind
impl Sync for PgTableKind
impl Unpin for PgTableKind
impl UnsafeUnpin for PgTableKind
impl UnwindSafe for PgTableKind
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