Pext

Trait Pext 

Source
pub trait Pext<Mask> {
    // Required method
    fn pext(self, mask: Mask) -> Self;
}

Required Methods§

Source

fn pext(self, mask: Mask) -> 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 Pext<u8> for u8

Source§

fn pext(self, m: u8) -> u8

Source§

impl Pext<u16> for u16

Source§

fn pext(self, m: u16) -> u16

Source§

impl Pext<u32> for u32

Source§

fn pext(self, m: u32) -> u32

Source§

impl Pext<u64> for u64

Source§

fn pext(self, m: u64) -> u64

Source§

impl Pext<u128> for u128

Source§

fn pext(self, m: u128) -> u128

Source§

impl Pext<usize> for usize

Source§

fn pext(self, m: usize) -> usize

Source§

impl Pext<PdepPextMaskU8> for u8

Source§

fn pext(self, mask: PdepPextMaskU8) -> u8

Source§

impl Pext<PdepPextMaskU16> for u16

Source§

fn pext(self, mask: PdepPextMaskU16) -> u16

Source§

impl Pext<PdepPextMaskU32> for u32

Source§

fn pext(self, mask: PdepPextMaskU32) -> u32

Source§

impl Pext<PdepPextMaskU64> for u64

Source§

fn pext(self, mask: PdepPextMaskU64) -> u64

Source§

impl Pext<PdepPextMaskU128> for u128

Source§

impl Pext<PdepPextMaskUsize> for usize

Implementors§