pub enum PgGeneratedKind {
Stored,
Virtual,
}Expand description
PostgreSQL generated-column labels.
Variants§
Stored
Generated column stored on disk.
Virtual
Virtual generated-column label for compatibility metadata.
Implementations§
Trait Implementations§
Source§impl Clone for PgGeneratedKind
impl Clone for PgGeneratedKind
Source§fn clone(&self) -> PgGeneratedKind
fn clone(&self) -> PgGeneratedKind
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 PgGeneratedKind
impl Debug for PgGeneratedKind
Source§impl Display for PgGeneratedKind
impl Display for PgGeneratedKind
Source§impl Hash for PgGeneratedKind
impl Hash for PgGeneratedKind
Source§impl Ord for PgGeneratedKind
impl Ord for PgGeneratedKind
Source§fn cmp(&self, other: &PgGeneratedKind) -> Ordering
fn cmp(&self, other: &PgGeneratedKind) -> 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 PgGeneratedKind
impl PartialEq for PgGeneratedKind
Source§fn eq(&self, other: &PgGeneratedKind) -> bool
fn eq(&self, other: &PgGeneratedKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PgGeneratedKind
impl PartialOrd for PgGeneratedKind
impl Copy for PgGeneratedKind
impl Eq for PgGeneratedKind
impl StructuralPartialEq for PgGeneratedKind
Auto Trait Implementations§
impl Freeze for PgGeneratedKind
impl RefUnwindSafe for PgGeneratedKind
impl Send for PgGeneratedKind
impl Sync for PgGeneratedKind
impl Unpin for PgGeneratedKind
impl UnsafeUnpin for PgGeneratedKind
impl UnwindSafe for PgGeneratedKind
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