pub trait Reshape<T> {
    fn reshape(self) -> T;
}
Expand description

Requires Nightly Reshape Self into T.

Required Methods

Reshape self into T.

Implementors