Trait hickory_resolver::name_server::Spawn
source · pub trait Spawn {
// Required method
fn spawn_bg<F>(&mut self, future: F)
where F: Future<Output = Result<(), ProtoError>> + Send + 'static;
}
Expand description
A type defines the Handle which can spawn future.
Required Methods§
Object Safety§
This trait is not object safe.
Implementors§
impl Spawn for TokioHandle
Available on crate feature
tokio-runtime
only.