pub trait GatherCond<A, L, R, T>: PlatformInstance{
type Op: ReadOp<Self, T>;
// Required method
fn cond(
self,
cond: A,
then: L,
or_else: R,
) -> Result<AccessOp<Self::Op, Self>, Error>;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".