pub trait ReadyEqExt<T>{
// Required methods
fn eq(self, t: &T) -> impl Future<Output = bool> + Send;
fn ne(self, t: &T) -> impl Future<Output = bool> + Send;
}Required Methods§
fn eq(self, t: &T) -> impl Future<Output = bool> + Send
fn ne(self, t: &T) -> 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.