snarkvm_console_algorithms::scalar

Trait CheckedShl

Source
pub trait CheckedShl: Sized {
    // Required method
    fn checked_shl(&self, v: &u32) -> Option<Self>;
}

Required Methods§

Source

fn checked_shl(&self, v: &u32) -> Option<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.

Implementations on Foreign Types§

Source§

impl CheckedShl for i8

Source§

fn checked_shl(&self, v: &u32) -> Option<i8>

Source§

impl CheckedShl for i16

Source§

fn checked_shl(&self, v: &u32) -> Option<i16>

Source§

impl CheckedShl for i32

Source§

fn checked_shl(&self, v: &u32) -> Option<i32>

Source§

impl CheckedShl for i64

Source§

fn checked_shl(&self, v: &u32) -> Option<i64>

Source§

impl CheckedShl for i128

Source§

fn checked_shl(&self, v: &u32) -> Option<i128>

Source§

impl CheckedShl for u8

Source§

fn checked_shl(&self, v: &u32) -> Option<u8>

Source§

impl CheckedShl for u16

Source§

fn checked_shl(&self, v: &u32) -> Option<u16>

Source§

impl CheckedShl for u32

Source§

fn checked_shl(&self, v: &u32) -> Option<u32>

Source§

impl CheckedShl for u64

Source§

fn checked_shl(&self, v: &u32) -> Option<u64>

Source§

impl CheckedShl for u128

Source§

fn checked_shl(&self, v: &u32) -> Option<u128>

Implementors§