pub trait TensorViewMutAPI{
type Type;
type Backend;
type Dim;
// Required method
fn view_mut(
&mut self,
) -> TensorMut<'_, Self::Type, Self::Backend, Self::Dim>;
}pub trait TensorViewMutAPI{
type Type;
type Backend;
type Dim;
// Required method
fn view_mut(
&mut self,
) -> TensorMut<'_, Self::Type, Self::Backend, Self::Dim>;
}