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

Required Methods§

source

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

Object Safety§

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§