Skip to content

Commit

Permalink
Update rama-dns/src/lib.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Glen De Cauwsemaecker <[email protected]>
  • Loading branch information
parkma99 and GlenDC authored Oct 29, 2024
1 parent c69e9cd commit 983f717
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rama-dns/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ impl<R: DnsResolver<Error: Into<BoxError>>> DnsResolver for Option<R> {
pub struct DnsChainDomainResolveErr<E: 'static> {
errors: Vec<E>,
}
impl<E: std::fmt::Debug + Send> std::fmt::Display for DnsChainDomainResolveErr<E> {

impl<E: std::fmt::Debug> std::fmt::Display for DnsChainDomainResolveErr<E> {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
write!(f, "{:?}", self.errors)
}
Expand Down

0 comments on commit 983f717

Please sign in to comment.