pub trait CubeBitOr:
BitOr<Output = Self>
+ CubePrimitive
+ IntoRuntime
+ CubeType<ExpandType: BitOrExpand>
+ Sized {
// Provided methods
fn __expand_bitor_method(
self,
scope: &Scope,
rhs: NativeExpand<Self>,
) -> NativeExpand<Self> { ... }
fn __expand_bitor(
scope: &Scope,
lhs: NativeExpand<Self>,
rhs: NativeExpand<Self>,
) -> NativeExpand<Self> { ... }
}Provided Methods§
fn __expand_bitor_method( self, scope: &Scope, rhs: NativeExpand<Self>, ) -> NativeExpand<Self>
fn __expand_bitor( scope: &Scope, lhs: NativeExpand<Self>, rhs: NativeExpand<Self>, ) -> NativeExpand<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".