pub enum DataType {
Show 25 variants
Char(Option<u64>),
Varchar(Option<u64>),
Uuid,
Clob(u64),
Binary(u64),
Varbinary(u64),
Blob(u64),
Decimal(Option<u64>, Option<u64>),
Float(Option<u64>),
SmallInt,
Int,
BigInt,
Real,
Double,
Boolean,
Date,
Time,
Timestamp,
Interval,
Regclass,
Text,
Json,
Bytea,
Custom(ObjectName),
Array(Box<DataType>),
}
Expand description
SQL data types
Variants§
Char(Option<u64>)
Fixed-length character type e.g. CHAR(10)
Varchar(Option<u64>)
Variable-length character type e.g. VARCHAR(10)
Uuid
Uuid type
Clob(u64)
Large character object e.g. CLOB(1000)
Binary(u64)
Fixed-length binary type e.g. BINARY(10)
Varbinary(u64)
Variable-length binary type e.g. VARBINARY(10)
Blob(u64)
Large binary object e.g. BLOB(1000)
Decimal(Option<u64>, Option<u64>)
Decimal type with optional precision and scale e.g. DECIMAL(10,2)
Float(Option<u64>)
Floating point with optional precision e.g. FLOAT(8)
SmallInt
Small integer
Int
Integer
BigInt
Big integer
Real
Floating point e.g. REAL
Double
Double e.g. DOUBLE PRECISION
Boolean
Boolean
Date
Date
Time
Time
Timestamp
Timestamp
Interval
Interval
Regclass
Regclass used in postgresql serial
Text
Text
Json
Json type
Bytea
Bytea
Custom(ObjectName)
Custom type such as enums
Array(Box<DataType>)
Arrays
Trait Implementations§
impl Eq for DataType
impl StructuralPartialEq for DataType
Auto Trait Implementations§
impl Freeze for DataType
impl RefUnwindSafe for DataType
impl Send for DataType
impl Sync for DataType
impl Unpin for DataType
impl UnwindSafe for DataType
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