Trait ArrayVTable

Source
pub trait ArrayVTable<V: VTable> {
    // Required methods
    fn len(array: &V::Array) -> usize;
    fn dtype(array: &V::Array) -> &DType;
    fn stats(array: &V::Array) -> StatsSetRef<'_>;
}

Required Methods§

Source

fn len(array: &V::Array) -> usize

Source

fn dtype(array: &V::Array) -> &DType

Source

fn stats(array: &V::Array) -> StatsSetRef<'_>

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§