[][src]Struct public_ip::BoxResolver

pub struct BoxResolver<C> { /* fields omitted */ }

Boxed Resolver wrapper

Implementations

impl<C> BoxResolver<C> where
    C: ResolverContext
[src]

pub fn new<R>(resolver: R) -> Self where
    R: Resolver<C> + 'static, 
[src]

Trait Implementations

impl<C> Resolver<C> for BoxResolver<C> where
    C: ResolverContext
[src]

type Error = BoxResolutionError

Error produced while attempting to resolve

type Resolution = BoxResolution

A successfully produced resolution

type Stream = BoxResolutionStream

The resolution stream produced by the resolver

Auto Trait Implementations

impl<C> !RefUnwindSafe for BoxResolver<C>

impl<C> Send for BoxResolver<C>

impl<C> !Sync for BoxResolver<C>

impl<C> Unpin for BoxResolver<C>

impl<C> !UnwindSafe for BoxResolver<C>

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>,