[][src]Struct public_ip::http::HttpResolver

pub struct HttpResolver { /* fields omitted */ }

The HTTP resolver

Implementations

impl HttpResolver[src]

pub fn new(uri: Uri, method: ExtractMethod) -> Self[src]

Create new HTTP resolver

Trait Implementations

impl<C> Resolver<C> for HttpResolver where
    C: HttpResolverContext
[src]

type Error = HttpResolutionError

Error produced while attempting to resolve

type Resolution = HttpResolution

A successfully produced resolution

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

The resolution stream produced by the resolver

Auto Trait Implementations

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