pub trait Resolver:
Send
+ Sync
+ Unpin
+ 'static {
// Required method
fn lookup_txt(
&self,
query: &str,
) -> impl Future<Output = Option<String>> + Send;
}
Expand description
A type that can lookup DNS entries
Required Methods§
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.