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

Object Safety§

This trait is not object safe.

Implementors§

source§

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