SignedExpBits

Trait SignedExpBits 

Source
pub trait SignedExpBits {
    type T: ExpBits;

    // Required method
    fn neg_and_bits(self) -> (bool, Self::T);
}

Required Associated Types§

Required Methods§

Source

fn neg_and_bits(self) -> (bool, Self::T)

Implementations on Foreign Types§

Source§

impl SignedExpBits for i8

Source§

type T = u8

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for i16

Source§

type T = u16

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for i32

Source§

type T = u32

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for i64

Source§

type T = u64

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for i128

Source§

type T = u128

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for isize

Source§

type T = usize

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for u8

Source§

type T = u8

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for u16

Source§

type T = u16

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for u32

Source§

type T = u32

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for u64

Source§

type T = u64

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for u128

Source§

type T = u128

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Source§

impl SignedExpBits for usize

Source§

type T = usize

Source§

fn neg_and_bits(self) -> (bool, Self::T)

Implementors§