Trait BuildArrayMapFrom

Source
pub trait BuildArrayMapFrom: Sized {
    // Required method
    fn as_arrays(source: &[Self]) -> BinaryArrayMap;

    // Provided method
    fn arrays_included(&self) -> Option<Vec<ArrayType>> { ... }
}

Required Methods§

Source

fn as_arrays(source: &[Self]) -> BinaryArrayMap

Provided Methods§

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.

Implementors§