[][src]Struct aws_sigv4::service::SignAndPrepare

pub struct SignAndPrepare<S> {
    pub credentials: Credentials,
    // some fields omitted
}

Fields

credentials: Credentials

Trait Implementations

impl<T, B> Service<Request<B>> for SignAndPrepare<T> where
    T: Service<Request<Body>>,
    B: AsRef<[u8]>, 
[src]

type Response = T::Response

Responses given by the service.

type Error = T::Error

Errors produced by the service.

type Future = T::Future

The future response value.

Auto Trait Implementations

impl<S> RefUnwindSafe for SignAndPrepare<S> where
    S: RefUnwindSafe

impl<S> Send for SignAndPrepare<S> where
    S: Send

impl<S> Sync for SignAndPrepare<S> where
    S: Sync

impl<S> Unpin for SignAndPrepare<S> where
    S: Unpin

impl<S> UnwindSafe for SignAndPrepare<S> where
    S: 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, Request> ServiceExt<Request> for T where
    T: Service<Request> + ?Sized
[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.