pub trait FallibleBool: Sealed {
type Err: Debug;
// Required method
fn get(self) -> Result<bool, Self::Err>;
}Expand description
A generalized fallible boolean result.
pub trait FallibleBool: Sealed {
type Err: Debug;
// Required method
fn get(self) -> Result<bool, Self::Err>;
}A generalized fallible boolean result.