pub enum SqlType {
SmallInt,
Integer,
BigInt,
Serial,
Boolean,
Text,
Array(Box<SqlType>),
NotNull(Box<SqlType>),
ByteArray,
NullByteArray,
BitsReprByByteArrayAndBitsLen,
References(String, String, Option<Action>, Option<Action>),
}Variants§
SmallInt
Integer
BigInt
Serial
Boolean
Text
Array(Box<SqlType>)
NotNull(Box<SqlType>)
ByteArray
NullByteArray
BitsReprByByteArrayAndBitsLen
References(String, String, Option<Action>, Option<Action>)
Implementations§
Trait Implementations§
Source§impl PartialOrd for SqlType
impl PartialOrd 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 UnsafeUnpin 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