pub trait ElementwiseAbs<A, T>: PlatformInstance{
type Op: ReadOp<Self, T::Abs>;
// Required method
fn abs(self, access: A) -> 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", so this trait is not object safe.