pub trait ResolverQuery<P: Protocol> {
// Required method
fn iter(self) -> Result<ResolverIter<P>>;
}Expand description
A query to be passed to a resolver.
Required Methods§
fn iter(self) -> Result<ResolverIter<P>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".