pub trait CubeAdd:
Sized
+ Add<Output = Self>
+ CubePrimitive
+ CubeTypewhere
Self::ExpandType: AddExpand,{
// Provided method
fn __expand_add(
scope: &mut Scope,
lhs: NativeExpand<Self>,
rhs: NativeExpand<Self>,
) -> NativeExpand<Self> { ... }
}Provided Methods§
fn __expand_add( scope: &mut 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".