pub trait CubeNot:
Not<Output = Self>
+ CubePrimitive
+ CubeType
+ IntoExpand<Expand = Self::ExpandType>where
Self::ExpandType: NotExpand,{
// 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".