Type Alias mas_oidc_client::http_service::HttpService

source ·
pub type HttpService = BoxCloneSyncService<Request<Bytes>, Response<Bytes>, Box<dyn Error + Send + Sync>>;
Expand description

Type for the underlying HTTP service.

Allows implementors to use different libraries that provide a Service that implements Clone + Send + Sync.

Aliased Type§

struct HttpService(/* private fields */);

Implementations

source§

impl<T, U, E> BoxCloneSyncService<T, U, E>

source

pub fn new<S>(inner: S) -> BoxCloneSyncService<T, U, E>
where S: Service<T, Response = U, Error = E> + Clone + Send + Sync + 'static, <S as Service<T>>::Future: Send + 'static,

Create a new BoxCloneSyncService.

Trait Implementations

source§

impl<T, U, E> Clone for BoxCloneSyncService<T, U, E>

source§

fn clone(&self) -> BoxCloneSyncService<T, U, E>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BoxCloneSyncService<Request<Bytes>, Response<Bytes>, Box<dyn Error + Send + Sync>>

source§

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<T, U, E> Service<T> for BoxCloneSyncService<T, U, E>

§

type Response = U

Responses given by the service.
§

type Error = E

Errors produced by the service.
§

type Future = Pin<Box<dyn Future<Output = Result<<BoxCloneSyncService<T, U, E> as Service<T>>::Response, <BoxCloneSyncService<T, U, E> as Service<T>>::Error>> + Send>>

The future response value.
source§

fn poll_ready( &mut self, cx: &mut Context<'_>, ) -> Poll<Result<(), <BoxCloneSyncService<T, U, E> as Service<T>>::Error>>

Returns Poll::Ready(Ok(())) when the service is able to process requests. Read more
source§

fn call( &mut self, request: T, ) -> <BoxCloneSyncService<T, U, E> as Service<T>>::Future

Process the request and return the response asynchronously. Read more