pub trait Not {
    // Required methods
    fn bitwise_not(&self) -> Self;
    fn not(&self) -> Self;
}

Required Methods§

source

fn bitwise_not(&self) -> Self

source

fn not(&self) -> Self

Object Safety§

This trait is not object safe.

Implementors§