Enum fire_postgres::table::column::ColumnKind
source · pub enum ColumnKind {
Show 15 variants
Boolean,
Varchar(usize),
FixedText(usize),
Text,
Date,
Timestamp,
F64,
F32,
I64,
I32,
I16,
Option(Box<ColumnKind>),
TextArray,
Bytea,
Json,
}
Variants§
Boolean
Varchar(usize)
FixedText(usize)
Text
Date
Timestamp
F64
F32
I64
I32
I16
Option(Box<ColumnKind>)
TextArray
Bytea
Json
Implementations§
Trait Implementations§
source§impl Clone for ColumnKind
impl Clone for ColumnKind
source§fn clone(&self) -> ColumnKind
fn clone(&self) -> ColumnKind
Returns a copy of the value. Read more
1.0.0 · 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 ColumnKind
impl Debug for ColumnKind
source§impl PartialEq<ColumnKind> for ColumnKind
impl PartialEq<ColumnKind> for ColumnKind
source§fn eq(&self, other: &ColumnKind) -> bool
fn eq(&self, other: &ColumnKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.