pub trait ScyllaDBHasArrayType {
// Required method
fn array_type_info() -> ScyllaDBTypeInfo;
// Provided method
fn array_compatible(ty: &ScyllaDBTypeInfo) -> bool { ... }
}
Expand description
Provides information necessary to encode and decode ScyllaDB arrays as compatible Rust types.
Required Methods§
Provided Methods§
fn array_compatible(ty: &ScyllaDBTypeInfo) -> bool
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.