Struct NullResolver

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

A resolver that implements implements Resolve+HostResolve but returns NameNotFound on resolve

This is needed to add resolver that can only resolve hostnames to the router.

You can create it with HostResolve::null_service_resolver

Trait Implementations§

Source§

impl<R: Debug> Debug for NullResolver<R>

Source§

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

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

impl<R: HostResolve> HostResolve for NullResolver<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> Resolve for NullResolver<R>

Source§

type Future = FutureResult<Address, Error>

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

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

impl<R> UnwindSafe for NullResolver<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.