[][src]Struct public_ip::ListResolver

pub struct ListResolver<R, C> where
    R: Resolver<C> + 'static,
    C: ResolverContext + Clone + 'static, 
{ /* fields omitted */ }

A resolver for combining a list of resolvers into one

Note, prefer using ToResolver::to_resolver

Implementations

impl<R, C> ListResolver<R, C> where
    R: Resolver<C> + 'static,
    C: ResolverContext + Clone + 'static, 
[src]

pub fn new(resolvers: Vec<R>) -> Self[src]

Trait Implementations

impl<R, C> Resolver<C> for ListResolver<R, C> where
    R: Resolver<C> + 'static,
    C: ResolverContext + Clone + 'static, 
[src]

type Error = R::Error

Error produced while attempting to resolve

type Resolution = R::Resolution

A successfully produced resolution

type Stream = BoxStream<'static, Result<Self::Resolution, Self::Error>>

The resolution stream produced by the resolver

Auto Trait Implementations

impl<R, C> RefUnwindSafe for ListResolver<R, C> where
    C: RefUnwindSafe,
    R: RefUnwindSafe

impl<R, C> Send for ListResolver<R, C>

impl<R, C> Sync for ListResolver<R, C> where
    C: Sync,
    R: Sync

impl<R, C> Unpin for ListResolver<R, C> where
    C: Unpin,
    R: Unpin

impl<R, C> UnwindSafe for ListResolver<R, C> where
    C: UnwindSafe,
    R: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,