pub trait Powi<Rhs: RudaPrimitive + RudaType<ExpandType: Into<ManagedVariable>> + Sized>:
RudaPrimitive
+ RudaType<ExpandType: PowiExpand<Rhs>>
+ Sized {
// Provided methods
fn powi(self, _rhs: Rhs) -> Self { ... }
fn __expand_powi(
scope: &mut Scope,
lhs: NativeExpand<Self>,
rhs: NativeExpand<Rhs>,
) -> NativeExpand<Self> { ... }
}Provided Methods§
fn powi(self, _rhs: Rhs) -> Self
fn __expand_powi( scope: &mut Scope, lhs: NativeExpand<Self>, rhs: NativeExpand<Rhs>, ) -> NativeExpand<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".