Struct http_signature_normalization_actix::digest::DigestClient[][src]

pub struct DigestClient<V> { /* fields omitted */ }

An intermediate type between setting the Digest and Signature or Authorization headers, and actually sending the request

This exists so that the return type for the SignExt trait can be named

Implementations

impl<V> DigestClient<V> where
    V: AsRef<[u8]>, 
[src]

pub fn send(self) -> SendClientRequest[src]

Send the request

This is analogous to ClientRequest::send_body and uses the body provided when producing the digest

Auto Trait Implementations

impl<V> !RefUnwindSafe for DigestClient<V>[src]

impl<V> !Send for DigestClient<V>[src]

impl<V> !Sync for DigestClient<V>[src]

impl<V> Unpin for DigestClient<V> where
    V: Unpin
[src]

impl<V> !UnwindSafe for DigestClient<V>[src]

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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