pub trait HasTensorShape {
    // Required method
    fn shape(&self) -> &TensorShape;
}

Required Methods§

source

fn shape(&self) -> &TensorShape

Implementors§

source§

impl<'a, Dtype> HasTensorShape for MatrixView<'a, Dtype>

source§

impl<Dtype> HasTensorShape for EphemeralView<'_, Dtype>

source§

impl<Dtype> HasTensorShape for Matrix<Dtype>