Trait NDArrayCast

Source
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§

Source

fn cast(self) -> Result<Array<OT, Self::Output, Self::Platform>, Error>

Construct a new array cast operation.

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.

Implementors§