pub trait Reshape<R> {
type Output;
// Required method
fn reshape(self, args: R) -> Self::Output;
// Provided method
fn _apply(self, args: R) -> Self::Output
where Self: Sized { ... }
}Required Associated Types§
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".