pub trait DataBase: Sealed {
    type Elem: Scalar;
}
Expand description

Base trait for BufferBase representation.

Required Associated Types§

source

type Elem: Scalar

The numerical type of the buffer.

Implementors§

source§

impl<T: Scalar> DataBase for SliceRepr<'_, T>

§

type Elem = T

source§

impl<T: Scalar> DataBase for UnsafeSliceRepr<'_, T>

§

type Elem = T