Skip to main content

CubeBitOr

Trait CubeBitOr 

Source
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§

Source

fn __expand_bitor_method( self, scope: &Scope, rhs: NativeExpand<Self>, ) -> NativeExpand<Self>

Source

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".

Implementors§

Source§

impl<T: BitOr<Output = T> + CubePrimitive + IntoRuntime> CubeBitOr for T