pub trait ExaHasArrayType: Type<Exasol> { }Expand description
Marker trait that limits arrays encoding to one dimensioanl arrays.
Implementing it for some type T enables relevant Type, Encode and
sqlx_core::decode::Decode impls for Vec<T>, &T (slices), [[T;N]] (arrays),
ExaIter, etc.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.