Struct FrozenSubscriber

Source
pub struct FrozenSubscriber<R> { /* private fields */ }
Expand description

A subscriber that resolves once and never updates the result

You can create it with Resolve::frozen_subscriber

Trait Implementations§

Source§

impl<R: Debug> Debug for FrozenSubscriber<R>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<R: HostResolve> HostResolve for FrozenSubscriber<R>

Source§

type HostFuture = <R as HostResolve>::HostFuture

A future returned from resolve()
Source§

fn resolve_host(&self, name: &Name) -> Self::HostFuture

Resolve a name to an address once
Source§

fn frozen_host_subscriber(self) -> FrozenSubscriber<Self>
where Self: Sized,

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

fn null_service_resolver(self) -> NullResolver<Self>
where Self: Sized,

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

impl<R: HostResolve> HostSubscribe for FrozenSubscriber<R>

Source§

type HostStream = StreamOnce<<R as HostResolve>::HostFuture>

A stream returned from subscribe()
Source§

type HostError = <<R as HostResolve>::HostFuture as Future>::Error

An error type returned by a stream Read more
Source§

fn subscribe_host(&self, name: &Name) -> Self::HostStream

Resolve a name and subscribe to the updates Read more
Source§

impl<R: Resolve> Resolve for FrozenSubscriber<R>

Source§

type Future = <R as Resolve>::Future

A future returned from resolve()
Source§

fn resolve(&self, name: &Name) -> Self::Future

Resolve a name to an address once
Source§

fn frozen_subscriber(self) -> FrozenSubscriber<Self>
where Self: Resolve + Sized,

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

fn frozen_service_subscriber(self) -> FrozenSubscriber<Self>
where Self: Sized,

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

fn null_host_resolver(self) -> NullHostResolver<Self>
where Self: Sized,

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

impl<R: Resolve> Subscribe for FrozenSubscriber<R>

Source§

type Stream = StreamOnce<<R as Resolve>::Future>

A stream returned from subscribe()
Source§

type Error = <<R as Resolve>::Future as Future>::Error

An error type returned by a stream Read more
Source§

fn subscribe(&self, name: &Name) -> Self::Stream

Resolve a name and subscribe to the updates Read more

Auto Trait Implementations§

§

impl<R> Freeze for FrozenSubscriber<R>
where R: Freeze,

§

impl<R> RefUnwindSafe for FrozenSubscriber<R>
where R: RefUnwindSafe,

§

impl<R> Send for FrozenSubscriber<R>
where R: Send,

§

impl<R> Sync for FrozenSubscriber<R>
where R: Sync,

§

impl<R> Unpin for FrozenSubscriber<R>
where R: Unpin,

§

impl<R> UnwindSafe for FrozenSubscriber<R>
where R: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.