pub trait NDArrayCast<OT: CType>: NDArray + Sized {
type Output: Access<OT>;
// Required method
fn cast(self) -> Result<Array<OT, Self::Output, Self::Platform>, Error>;
}
Expand description
Array cast operations
Required Associated Types§
Required Methods§
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.