idoh 0.1.15

Fast and secure DNS over HTTPS resolution / 极速安全的 DoH 解析库
Documentation
use crate::{Answer, Result};

pub trait Resolver {
  fn resolve<T: Send + Unpin + std::fmt::Debug + 'static>(
    &self,
    name: impl AsRef<str> + Send,
    record_type: impl AsRef<str> + Send,
    extract: impl Fn(&[Answer]) -> Result<Option<T>> + Send + 'static + Clone,
  ) -> impl std::future::Future<Output = Result<Option<T>>> + Send;
}

pub struct Resolve;

impl Resolver for Resolve {
  async fn resolve<T: Send + Unpin + std::fmt::Debug + 'static>(
    &self,
    name: impl AsRef<str> + Send,
    record_type: impl AsRef<str> + Send,
    extract: impl Fn(&[Answer]) -> Result<Option<T>> + Send + 'static + Clone,
  ) -> Result<Option<T>> {
    crate::resolve::resolve(name, record_type, extract).await
  }
}