Trait lrs::ops::Not

Objects that implement the unary ! operator.

Syntax

trait Not {
    type Output;

    /* Required methods */
    fn not(self) -> <Self as Not>::Output
}

Associated types

NameDescription
Output

The output of the operator.

Methods

ReceiverNameDescription
selfnot

The method that will be called by the operator.