pub trait ReadyBoolExt{
// Provided methods
fn is_false(self) -> impl Future<Output = bool> + Send { ... }
fn is_true(self) -> impl Future<Output = bool> + Send { ... }
}Provided Methods§
fn is_false(self) -> impl Future<Output = bool> + Send
fn is_true(self) -> impl Future<Output = bool> + Send
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.