pub trait CubeNot:
Not<Output = Self>
+ CubePrimitive
+ CubeType<ExpandType: NotExpand>
+ IntoExpand<Expand = <Self as CubeType>::ExpandType> {
// Provided methods
fn __expand_not_method(self, scope: &Scope) -> NativeExpand<Self> { ... }
fn __expand_not(scope: &Scope, x: NativeExpand<Self>) -> NativeExpand<Self> { ... }
}Provided Methods§
fn __expand_not_method(self, scope: &Scope) -> NativeExpand<Self>
fn __expand_not(scope: &Scope, x: NativeExpand<Self>) -> NativeExpand<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".