Skip to main content

CubeBitXor

Trait CubeBitXor 

Source
pub trait CubeBitXor:
    BitXor<Output = Self>
    + CubePrimitive
    + IntoRuntime
    + CubeType<ExpandType: BitXorExpand>
    + Sized {
    // Provided methods
    fn __expand_bitxor_method(
        self,
        scope: &Scope,
        rhs: NativeExpand<Self>,
    ) -> NativeExpand<Self> { ... }
    fn __expand_bitxor(
        scope: &Scope,
        lhs: NativeExpand<Self>,
        rhs: NativeExpand<Self>,
    ) -> NativeExpand<Self> { ... }
}

Provided Methods§

Source

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

Source

fn __expand_bitxor( 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: BitXor<Output = T> + CubePrimitive + IntoRuntime> CubeBitXor for T