Skip to main content

NDArrayCast

Trait NDArrayCast 

Source
pub trait NDArrayCast<OT: Number>: 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".

Implementors§