pub trait NDArrayUnaryBoolean: NDArray + Sized {
type Output: Access<u8>;
// Required method
fn not(self) -> Result<Array<u8, Self::Output, Self::Platform>, Error>;
}Expand description
Unary boolean array 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".