Trait ElementwiseUnaryBoolean

Source
pub trait ElementwiseUnaryBoolean<A, T>: PlatformInstance
where A: Access<T>, T: CType,
{ type Op: ReadOp<Self, u8>; // Required method fn not(self, access: A) -> Result<AccessOp<Self::Op, Self>, Error>; }

Required Associated Types§

Source

type Op: ReadOp<Self, u8>

Required Methods§

Source

fn not(self, access: A) -> Result<AccessOp<Self::Op, Self>, Error>

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§

Source§

impl<A: Access<T>, T: CType> ElementwiseUnaryBoolean<A, T> for Platform

Source§

type Op = Unary<A, T, u8>

Source§

impl<A: Access<T>, T: CType> ElementwiseUnaryBoolean<A, T> for Host

Source§

type Op = Unary<A, T, u8>