Enum opensrv_clickhouse::types::SqlType
source · pub enum SqlType {
Show 23 variants
UInt8,
UInt16,
UInt32,
UInt64,
Int8,
Int16,
Int32,
Int64,
String,
FixedString(usize),
Float32,
Float64,
Date,
DateTime(DateTimeType),
Ipv4,
Ipv6,
Uuid,
Nullable(&'static SqlType),
Array(&'static SqlType),
Decimal(u8, u8),
Enum8(Vec<(String, i8)>),
Enum16(Vec<(String, i16)>),
Tuple(Vec<&'static SqlType>),
}Variants§
UInt8
UInt16
UInt32
UInt64
Int8
Int16
Int32
Int64
String
FixedString(usize)
Float32
Float64
Date
DateTime(DateTimeType)
Ipv4
Ipv6
Uuid
Nullable(&'static SqlType)
Array(&'static SqlType)
Decimal(u8, u8)
Enum8(Vec<(String, i8)>)
Enum16(Vec<(String, i16)>)
Tuple(Vec<&'static SqlType>)
Implementations§
Trait Implementations§
source§impl PartialEq for SqlType
impl PartialEq for SqlType
impl Eq for SqlType
impl StructuralEq for SqlType
impl StructuralPartialEq for SqlType
Auto Trait Implementations§
impl RefUnwindSafe for SqlType
impl Send for SqlType
impl Sync for SqlType
impl Unpin for SqlType
impl UnwindSafe for SqlType
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