Struct actix_prerender::PrerenderMiddleware
source · [−]pub struct PrerenderMiddleware<S> { /* private fields */ }Implementations
sourceimpl<S> PrerenderMiddleware<S>
impl<S> PrerenderMiddleware<S>
pub fn prepare_build_api_url(service_url: &Url, req: &ServiceRequest) -> String
pub async fn get_rendered_response(
inner: &Inner,
req: ServiceRequest
) -> Result<ServiceResponse, PrerenderError>
Trait Implementations
sourceimpl<S, B> Service<ServiceRequest> for PrerenderMiddleware<S> where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
S::Future: 'static,
B: MessageBody,
impl<S, B> Service<ServiceRequest> for PrerenderMiddleware<S> where
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error>,
S::Future: 'static,
B: MessageBody,
type Response = ServiceResponse<EitherBody<B>>
type Response = ServiceResponse<EitherBody<B>>
Responses given by the service.
type Future = LocalBoxFuture<'static, Result<ServiceResponse<EitherBody<B>>, Error>>
type Future = LocalBoxFuture<'static, Result<ServiceResponse<EitherBody<B>>, Error>>
The future response value.
sourcefn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
fn poll_ready(&self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>
Returns Ready when the service is able to process requests. Read more
sourcefn call(&self, req: ServiceRequest) -> Self::Future
fn call(&self, req: ServiceRequest) -> Self::Future
Process the request and return the response asynchronously. Read more
Auto Trait Implementations
impl<S> !RefUnwindSafe for PrerenderMiddleware<S>
impl<S> !Send for PrerenderMiddleware<S>
impl<S> !Sync for PrerenderMiddleware<S>
impl<S> Unpin for PrerenderMiddleware<S> where
S: Unpin,
impl<S> !UnwindSafe for PrerenderMiddleware<S>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<S, Req> IntoService<S, Req> for S where
S: Service<Req>,
impl<S, Req> IntoService<S, Req> for S where
S: Service<Req>,
sourcefn into_service(self) -> S
fn into_service(self) -> S
Convert to a Service
sourceimpl<S, Req> ServiceExt<Req> for S where
S: Service<Req>,
impl<S, Req> ServiceExt<Req> for S where
S: Service<Req>,
sourcefn map<F, R>(self, f: F) -> Map<Self, F, Req, R> where
F: FnMut(Self::Response) -> R,
fn map<F, R>(self, f: F) -> Map<Self, F, Req, R> where
F: FnMut(Self::Response) -> R,
Map this service’s output to a different type, returning a new service of the resulting type. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
