Skip to main content

CarrylessMul

Trait CarrylessMul 

Source
pub trait CarrylessMul: Copy + 'static {
    // Required method
    fn carryless_mul(self, rhs: Self) -> Self;
}
🔬This is a nightly-only experimental API. (core_intrinsics_fallbacks)

Required Methods§

Source

fn carryless_mul(self, rhs: Self) -> Self

🔬This is a nightly-only experimental API. (core_intrinsics_fallbacks)

See super::carryless_mul; we just need the trait indirection to handle different types since calling intrinsics with generics doesn’t work.

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.

Implementors§