Trait Ashr

Source
trait Ashr: DInt {
    // Provided method
    fn ashr(self, shr: u32) -> Self { ... }
}

Provided Methods§

Source

fn ashr(self, shr: u32) -> Self

Returns arithmetic a >> b, requires b < Self::BITS

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§