openthread::ot

Trait DnssdExt

Source
pub trait DnssdExt: Dnssd {
    // Provided method
    fn dnssd_queries(&self) -> DnssdQueryIterator<'_, Self> 
       where Self: Sized { ... }
}
Expand description

Extension trait for the trait Dnssd.

Provided Methods§

Source

fn dnssd_queries(&self) -> DnssdQueryIterator<'_, Self>
where Self: Sized,

Iterator for easily iterating over all of the DNS-SD queries.

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.

Implementors§

Source§

impl<T: Dnssd> DnssdExt for T