pub trait TryNot { type Error; type Output; // Required method fn try_not(self) -> Result<Self::Output, Self::Error>; }
The try trait for Not.
Not
The type returned in the event of an error.
The type returned after performing the operation.
The fallible equivalent of Not::not.
Not::not