Objects that implement the unary ! operator.
trait Not {
type Output;
/* Required methods */
fn not(self) -> <Self as Not>::Output
}| Name | Description |
|---|---|
| Output | The output of the operator. |
| Receiver | Name | Description |
|---|---|---|
self | not | The method that will be called by the operator. |