[][src]Struct public_ip::ResultResolver

pub struct ResultResolver<R, E> { /* fields omitted */ }

A resolver that wraps a result that is either a resolver, or an error produced while creating it

Implementations

impl<R, E> ResultResolver<R, E>[src]

pub fn new(result: Result<R, E>) -> Self[src]

Trait Implementations

impl<R, E, C> Resolver<C> for ResultResolver<R, E> where
    R: Resolver<C>,
    C: ResolverContext,
    E: ResolutionError
[src]

type Error = BoxResolutionError

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, E> RefUnwindSafe for ResultResolver<R, E> where
    E: RefUnwindSafe,
    R: RefUnwindSafe

impl<R, E> Send for ResultResolver<R, E> where
    E: Send,
    R: Send

impl<R, E> Sync for ResultResolver<R, E> where
    E: Sync,
    R: Sync

impl<R, E> Unpin for ResultResolver<R, E> where
    E: Unpin,
    R: Unpin

impl<R, E> UnwindSafe for ResultResolver<R, E> where
    E: 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>,