pub trait ElementwiseBoolean<L, R, T>: PlatformInstance {
type Op: ReadOp<Self, u8>;
// Required methods
fn and(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>;
fn or(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>;
fn xor(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>;
}
Required Associated Types§
Required Methods§
fn and(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>
fn or(self, left: L, right: R) -> Result<AccessOp<Self::Op, Self>, Error>
fn xor(self, left: L, right: R) -> 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.