Trait zenoh_core::AsyncResolve
source · pub trait AsyncResolve: Resolvable {
type Future: Future<Output = Self::To> + Send;
// Required method
fn res_async(self) -> Self::Future;
// Provided method
fn res(self) -> Self::Future
where Self: Sized { ... }
}👎Deprecated since 1.0.0: use
.await directly insteadRequired Associated Types§
type Future: Future<Output = Self::To> + Send
👎Deprecated since 1.0.0: use
.await directly instead