Not

Trait Not 

Source
pub trait Not {
    type Output;

    // Required method
    fn not(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn not(self) -> Self::Output

Implementations on Foreign Types§

Source§

impl Not for bool

Source§

impl Not for i8

Source§

type Output = i8

Source§

fn not(self) -> i8

Source§

impl Not for i16

Source§

type Output = i16

Source§

fn not(self) -> i16

Source§

impl Not for i32

Source§

type Output = i32

Source§

fn not(self) -> i32

Source§

impl Not for i64

Source§

type Output = i64

Source§

fn not(self) -> i64

Source§

impl Not for i128

Source§

impl Not for isize

Source§

impl Not for u8

Source§

type Output = u8

Source§

fn not(self) -> u8

Source§

impl Not for u16

Source§

type Output = u16

Source§

fn not(self) -> u16

Source§

impl Not for u32

Source§

type Output = u32

Source§

fn not(self) -> u32

Source§

impl Not for u64

Source§

type Output = u64

Source§

fn not(self) -> u64

Source§

impl Not for u128

Source§

impl Not for usize

Implementors§