#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub enum ArrayType {
Bool,
TinyInt,
SmallInt,
Int,
BigInt,
TinyUnsigned,
SmallUnsigned,
Unsigned,
BigUnsigned,
Float,
Double,
String,
Char,
Bytes,
#[cfg(feature = "with-chrono")]
ChronoDate,
#[cfg(feature = "with-chrono")]
ChronoTime,
#[cfg(feature = "with-chrono")]
ChronoDateTime,
#[cfg(feature = "with-chrono")]
ChronoDateTimeUtc,
#[cfg(feature = "with-chrono")]
ChronoDateTimeLocal,
#[cfg(feature = "with-chrono")]
ChronoDateTimeWithTimeZone,
#[cfg(feature = "with-uuid")]
Uuid,
#[cfg(feature = "with-json")]
Json,
#[cfg(feature = "with-rust_decimal")]
Decimal,
#[cfg(feature = "with-bigdecimal")]
BigDecimal,
}