pub enum PgTablePersistence {
Permanent,
Unlogged,
Temporary,
}Expand description
PostgreSQL table persistence labels.
Variants§
Permanent
Normal persistent table storage.
Unlogged
Unlogged table storage.
Temporary
Session-local temporary storage.
Implementations§
Trait Implementations§
Source§impl Clone for PgTablePersistence
impl Clone for PgTablePersistence
Source§fn clone(&self) -> PgTablePersistence
fn clone(&self) -> PgTablePersistence
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 PgTablePersistence
impl Debug for PgTablePersistence
Source§impl Default for PgTablePersistence
impl Default for PgTablePersistence
Source§fn default() -> PgTablePersistence
fn default() -> PgTablePersistence
Returns the “default value” for a type. Read more
Source§impl Display for PgTablePersistence
impl Display for PgTablePersistence
Source§impl FromStr for PgTablePersistence
impl FromStr for PgTablePersistence
Source§impl Hash for PgTablePersistence
impl Hash for PgTablePersistence
Source§impl Ord for PgTablePersistence
impl Ord for PgTablePersistence
Source§fn cmp(&self, other: &PgTablePersistence) -> Ordering
fn cmp(&self, other: &PgTablePersistence) -> 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 PgTablePersistence
impl PartialEq for PgTablePersistence
Source§fn eq(&self, other: &PgTablePersistence) -> bool
fn eq(&self, other: &PgTablePersistence) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PgTablePersistence
impl PartialOrd for PgTablePersistence
impl Copy for PgTablePersistence
impl Eq for PgTablePersistence
impl StructuralPartialEq for PgTablePersistence
Auto Trait Implementations§
impl Freeze for PgTablePersistence
impl RefUnwindSafe for PgTablePersistence
impl Send for PgTablePersistence
impl Sync for PgTablePersistence
impl Unpin for PgTablePersistence
impl UnsafeUnpin for PgTablePersistence
impl UnwindSafe for PgTablePersistence
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