pub trait UintUtils {
// Required methods
fn usqrt(self) -> Self;
fn ucbrt(self) -> Self;
fn usin_mul(self, mul_by: Self) -> Self;
fn ucos_mul(self, mul_by: Self) -> Self;
fn utan_mul(self, mul_by: Self) -> Self;
fn uasin_mul(self, mul_by: Self) -> Self;
fn uacos_mul(self, mul_by: Self) -> Self;
fn uatan_mul(self, mul_by: Self) -> Self;
fn uatan2_mul(self, other: Self, mul_by: Self) -> Self;
fn utanh_mul(self, mul_by: Self) -> Self;
fn usinh_mul(self, mul_by: Self) -> Self;
fn ucosh_mul(self, mul_by: Self) -> Self;
}Required Methods§
fn usqrt(self) -> Self
fn ucbrt(self) -> Self
fn usin_mul(self, mul_by: Self) -> Self
fn ucos_mul(self, mul_by: Self) -> Self
fn utan_mul(self, mul_by: Self) -> Self
fn uasin_mul(self, mul_by: Self) -> Self
fn uacos_mul(self, mul_by: Self) -> Self
fn uatan_mul(self, mul_by: Self) -> Self
fn uatan2_mul(self, other: Self, mul_by: Self) -> Self
fn utanh_mul(self, mul_by: Self) -> Self
fn usinh_mul(self, mul_by: Self) -> Self
fn ucosh_mul(self, mul_by: Self) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.