Trait std::ops::Not 1.0.0[−][src]
The unary logical negation operator !
.
Examples
An implementation of Not
for Answer
, which enables the use of !
to
invert its value.
use std::ops::Not; #[derive(Debug, PartialEq)] enum Answer { Yes, No, } impl Not for Answer { type Output = Answer; fn not(self) -> Answer { match self { Answer::Yes => Answer::No, Answer::No => Answer::Yes } } } assert_eq!(!Answer::Yes, Answer::No); assert_eq!(!Answer::No, Answer::Yes);Run
Associated Types
type Output
The resulting type after applying the !
operator.
Required Methods
Implementors
impl Not for i64x8 type Output = i64x8;
impl Not for Wrapping<u8> type Output = Wrapping<u8>;
impl Not for usize type Output = usize;
impl Not for i8x4 type Output = i8x4;
impl Not for u8x32 type Output = u8x32;
impl Not for Wrapping<u16> type Output = Wrapping<u16>;
impl<'a> Not for &'a u32 type Output = <u32 as Not>::Output;
impl Not for u16x4 type Output = u16x4;
impl Not for m64x2 type Output = m64x2;
impl<'a> Not for &'a Wrapping<u8> type Output = <Wrapping<u8> as Not>::Output;
impl Not for u64x4 type Output = u64x4;
impl Not for u32 type Output = u32;
impl Not for isize type Output = isize;
impl Not for Wrapping<u64> type Output = Wrapping<u64>;
impl Not for Wrapping<i64> type Output = Wrapping<i64>;
impl Not for i16x8 type Output = i16x8;
impl Not for m16x16 type Output = m16x16;
impl Not for u16x32 type Output = u16x32;
impl<'a> Not for &'a i64 type Output = <i64 as Not>::Output;
impl Not for u32x16 type Output = u32x16;
impl Not for u32x8 type Output = u32x8;
impl Not for m8x16 type Output = m8x16;
impl Not for i32 type Output = i32;
impl Not for Wrapping<u32> type Output = Wrapping<u32>;
impl Not for m16x2 type Output = m16x2;
impl Not for u8x4 type Output = u8x4;
impl<'a> Not for &'a i32 type Output = <i32 as Not>::Output;
impl Not for u16x16 type Output = u16x16;
impl<'a> Not for &'a i16 type Output = <i16 as Not>::Output;
impl Not for bool type Output = bool;
impl Not for u64x2 type Output = u64x2;
impl Not for m8x32 type Output = m8x32;
impl Not for u8x8 type Output = u8x8;
impl Not for i128 type Output = i128;
impl Not for u16 type Output = u16;
impl<'a> Not for &'a Wrapping<u64> type Output = <Wrapping<u64> as Not>::Output;
impl<'a> Not for &'a u128 type Output = <u128 as Not>::Output;
impl Not for i8 type Output = i8;
impl<'a> Not for &'a Wrapping<i8> type Output = <Wrapping<i8> as Not>::Output;
impl<'a> Not for &'a Wrapping<i64> type Output = <Wrapping<i64> as Not>::Output;
impl Not for Wrapping<u128> type Output = Wrapping<u128>;
impl Not for i64x4 type Output = i64x4;
impl Not for u32x2 type Output = u32x2;
impl Not for i8x64 type Output = i8x64;
impl Not for i8x32 type Output = i8x32;
impl Not for Wrapping<i8> type Output = Wrapping<i8>;
impl Not for m8x8 type Output = m8x8;
impl Not for i16 type Output = i16;
impl Not for m16x8 type Output = m16x8;
impl<'a> Not for &'a Wrapping<u128> type Output = <Wrapping<u128> as Not>::Output;
impl Not for m1x16 type Output = m1x16;
impl<'a> Not for &'a u8 type Output = <u8 as Not>::Output;
impl Not for m1x32 type Output = m1x32;
impl Not for m8x2 type Output = m8x2;
impl Not for i8x2 type Output = i8x2;
impl Not for i32x4 type Output = i32x4;
impl Not for u8x2 type Output = u8x2;
impl Not for i16x16 type Output = i16x16;
impl<'a> Not for &'a u16 type Output = <u16 as Not>::Output;
impl Not for u32x4 type Output = u32x4;
impl<'a> Not for &'a Wrapping<i128> type Output = <Wrapping<i128> as Not>::Output;
impl Not for m16x4 type Output = m16x4;
impl Not for u8x16 type Output = u8x16;
impl Not for m1x8 type Output = m1x8;
impl<'a> Not for &'a Wrapping<i16> type Output = <Wrapping<i16> as Not>::Output;
impl Not for m32x2 type Output = m32x2;
impl Not for i16x4 type Output = i16x4;
impl Not for i32x16 type Output = i32x16;
impl<'a> Not for &'a usize type Output = <usize as Not>::Output;
impl Not for i32x8 type Output = i32x8;
impl Not for u64 type Output = u64;
impl Not for m32x8 type Output = m32x8;
impl Not for Wrapping<usize> type Output = Wrapping<usize>;
impl<'a> Not for &'a bool type Output = <bool as Not>::Output;
impl Not for u16x8 type Output = u16x8;
impl Not for Wrapping<i16> type Output = Wrapping<i16>;
impl Not for i32x2 type Output = i32x2;
impl Not for Wrapping<i128> type Output = Wrapping<i128>;
impl<'a> Not for &'a Wrapping<u32> type Output = <Wrapping<u32> as Not>::Output;
impl<'a> Not for &'a Wrapping<i32> type Output = <Wrapping<i32> as Not>::Output;
impl Not for m32x4 type Output = m32x4;
impl Not for u16x2 type Output = u16x2;
impl Not for Wrapping<i32> type Output = Wrapping<i32>;
impl Not for u8x64 type Output = u8x64;
impl Not for u128 type Output = u128;
impl<'a> Not for &'a i128 type Output = <i128 as Not>::Output;
impl Not for i8x16 type Output = i8x16;
impl Not for m64x4 type Output = m64x4;
impl<'a> Not for &'a isize type Output = <isize as Not>::Output;
impl Not for i16x32 type Output = i16x32;
impl Not for Wrapping<isize> type Output = Wrapping<isize>;
impl<'a> Not for &'a i8 type Output = <i8 as Not>::Output;
impl Not for i64 type Output = i64;
impl Not for m1x64 type Output = m1x64;
impl Not for i16x2 type Output = i16x2;
impl<'a> Not for &'a Wrapping<usize> type Output = <Wrapping<usize> as Not>::Output;
impl<'a> Not for &'a Wrapping<u16> type Output = <Wrapping<u16> as Not>::Output;
impl<'a> Not for &'a u64 type Output = <u64 as Not>::Output;
impl Not for u8 type Output = u8;
impl Not for m8x4 type Output = m8x4;
impl Not for i8x8 type Output = i8x8;
impl Not for i64x2 type Output = i64x2;
impl<'a> Not for &'a Wrapping<isize> type Output = <Wrapping<isize> as Not>::Output;
impl Not for u64x8 type Output = u64x8;