snarkvm_console_collections::environment::prelude

Trait WrappingPow

Source
pub trait WrappingPow: Sized {
    // Required method
    fn wrapping_pow(&self, v: &u32) -> Self;
}

Required Methods§

Source

fn wrapping_pow(&self, v: &u32) -> 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 WrappingPow for i8

Source§

fn wrapping_pow(&self, v: &u32) -> i8

Source§

impl WrappingPow for i16

Source§

fn wrapping_pow(&self, v: &u32) -> i16

Source§

impl WrappingPow for i32

Source§

fn wrapping_pow(&self, v: &u32) -> i32

Source§

impl WrappingPow for i64

Source§

fn wrapping_pow(&self, v: &u32) -> i64

Source§

impl WrappingPow for i128

Source§

fn wrapping_pow(&self, v: &u32) -> i128

Source§

impl WrappingPow for u8

Source§

fn wrapping_pow(&self, v: &u32) -> u8

Source§

impl WrappingPow for u16

Source§

fn wrapping_pow(&self, v: &u32) -> u16

Source§

impl WrappingPow for u32

Source§

fn wrapping_pow(&self, v: &u32) -> u32

Source§

impl WrappingPow for u64

Source§

fn wrapping_pow(&self, v: &u32) -> u64

Source§

impl WrappingPow for u128

Source§

fn wrapping_pow(&self, v: &u32) -> u128

Implementors§