pub enum SqlType {
String,
Int(TypeSize),
UnsignedInt(TypeSize),
Enum(Option<TypeSize16>, Vec<(String, i16)>),
Date,
DateTime(Option<String>),
Float32,
Float64,
FixedString(usize),
IPv4,
IPv6,
}
Variants§
String
Int(TypeSize)
UnsignedInt(TypeSize)
Enum(Option<TypeSize16>, Vec<(String, i16)>)
Date
DateTime(Option<String>)
Float32
Float64
FixedString(usize)
IPv4
IPv6
Trait Implementations§
impl Eq for SqlType
impl StructuralPartialEq for SqlType
Auto Trait Implementations§
impl Freeze for SqlType
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