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.

Object Safety§

This trait is not object safe.

Implementors§