Struct abstract_ns::combinators::FrozenSubscriber [] [src]

pub struct FrozenSubscriber<R> { /* fields omitted */ }

A subscriber that resolves once and never updates the result

You can create it with Resolve::frozen_subscriber

Trait Implementations

impl<R: Debug> Debug for FrozenSubscriber<R>
[src]

[src]

Formats the value using the given formatter.

impl<R: Resolve> Resolve for FrozenSubscriber<R>
[src]

A future returned from resolve()

[src]

Resolve a name to an address once

[src]

Create a subscriber that resolves once using this resolver and never updates a stream Read more

[src]

Create a subscriber that resolves once using this resolver and never updates a stream Read more

[src]

Create a thing that implements Resolve+HostResolve but returns NameNotFound on resolve_host Read more

impl<R: Resolve> Subscribe for FrozenSubscriber<R>
[src]

A stream returned from subscribe()

An error type returned by a stream Read more

[src]

Resolve a name and subscribe to the updates Read more

impl<R: HostResolve> HostResolve for FrozenSubscriber<R>
[src]

A future returned from resolve()

[src]

Resolve a name to an address once

[src]

Create a subscriber that resolves once using this resolver and never updates a stream Read more

[src]

Create a thing that implements Resolve+HostResolve but returns NameNotFound on resolve Read more

impl<R: HostResolve> HostSubscribe for FrozenSubscriber<R>
[src]

A stream returned from subscribe()

An error type returned by a stream Read more

[src]

Resolve a name and subscribe to the updates Read more