pub trait MatrixTranspose<'a, Dtype: 'a>: HasTensorShapeData<Dtype> + BorrowTensor<'a, Dtype> {
// Provided methods
fn t(&'a self) -> <Self as BorrowTensor<'a, Dtype>>::Output { ... }
fn transpose(
&'a self,
axes: Vec<AxisIndex>,
) -> <Self as BorrowTensor<'a, Dtype>>::Output { ... }
}
Provided Methods§
Sourcefn t(&'a self) -> <Self as BorrowTensor<'a, Dtype>>::Output
fn t(&'a self) -> <Self as BorrowTensor<'a, Dtype>>::Output
Reverses the axes.
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.