pub trait SocketAddressEnumeratorExt: IsA<SocketAddressEnumerator> + Sealed + 'static {
// Provided methods
fn next(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<Option<SocketAddress>, Error> { ... }
fn next_async<P>(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<Option<SocketAddress>, Error>) + 'static { ... }
fn next_future(
&self,
) -> Pin<Box<dyn Future<Output = Result<Option<SocketAddress>, Error>>>> { ... }
}
Provided Methods§
fn next( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<Option<SocketAddress>, Error>
fn next_async<P>( &self, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn next_future( &self, ) -> Pin<Box<dyn Future<Output = Result<Option<SocketAddress>, Error>>>>
Object Safety§
This trait is not object safe.