Trait std::ops::Not1.0.0 [] [src]

#[lang = "not"]
pub trait Not { type Output; fn not(self) -> Self::Output; }

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

The resulting type after applying the ! operator.

Required Methods

Performs the unary ! operation.

Implementors