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>

Object Safety§

This trait is not object safe.

Implementors§

source§

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

§

type Op = Unary<A, T, u8>

source§

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

§

type Op = Unary<A, T, u8>