pub trait BuildArrayMapFrom: Sized {
// Required method
fn as_arrays(source: &[Self]) -> BinaryArrayMap;
// Provided method
fn arrays_included(&self) -> Option<Vec<ArrayType>> { ... }
}
Required Methods§
fn as_arrays(source: &[Self]) -> BinaryArrayMap
Provided Methods§
fn arrays_included(&self) -> Option<Vec<ArrayType>>
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.