Trait IndexableTensor

Source
pub trait IndexableTensor<Dtype>: HasTensorShapeData<Dtype>
where Dtype: Copy,
{ // Provided method fn at<T: AsRef<[Unitless]>>(&self, coord: T) -> Dtype { ... } }

Provided Methods§

Source

fn at<T: AsRef<[Unitless]>>(&self, coord: T) -> Dtype

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§

Source§

impl<Dtype, T> IndexableTensor<Dtype> for T
where T: HasTensorShapeData<Dtype>, Dtype: Copy,