pub struct LiveReload<S, ReqPred = Always, ResPred = ContentTypeStartsWith<&'static str>> { /* private fields */ }
Expand description

Middleware to enable LiveReload functionality.

Implementations§

source§

impl<S, ReqPred, ResPred> LiveReload<S, ReqPred, ResPred>

source

pub fn new<P: Into<String>>( service: S, reloader: Reloader, req_predicate: ReqPred, res_predicate: ResPred, reload_interval: Duration, prefix: P ) -> Self

👎Deprecated since 0.9.0: please use LiveReloadLayer::new().layer(service) instead

Create a new LiveReload middleware.

Trait Implementations§

source§

impl<S: Clone, ReqPred: Clone, ResPred: Clone> Clone for LiveReload<S, ReqPred, ResPred>

source§

fn clone(&self) -> LiveReload<S, ReqPred, ResPred>

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<S: Debug, ReqPred: Debug, ResPred: Debug> Debug for LiveReload<S, ReqPred, ResPred>

source§

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

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

impl<ReqBody, ResBody, S, ReqPred, ResPred> Service<Request<ReqBody>> for LiveReload<S, ReqPred, ResPred>
where S: Service<Request<ReqBody>, Response = Response<ResBody>>, ResBody: Body, ReqPred: Predicate<Request<ReqBody>>, ResPred: Predicate<Response<ResBody>>,

§

type Response = <OverlayService<String, Infallible, OverlayService<LongPollBody, Infallible, InjectService<S, ReqPred, ResPred>>> as Service<Request<ReqBody>>>::Response

Responses given by the service.
§

type Error = <OverlayService<String, Infallible, OverlayService<LongPollBody, Infallible, InjectService<S, ReqPred, ResPred>>> as Service<Request<ReqBody>>>::Error

Errors produced by the service.
§

type Future = <OverlayService<String, Infallible, OverlayService<LongPollBody, Infallible, InjectService<S, ReqPred, ResPred>>> as Service<Request<ReqBody>>>::Future

The future response value.
source§

fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>>

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

fn call(&mut self, req: Request<ReqBody>) -> Self::Future

Process the request and return the response asynchronously. Read more

Auto Trait Implementations§

§

impl<S, ReqPred = Always, ResPred = ContentTypeStartsWith<&'static str>> !RefUnwindSafe for LiveReload<S, ReqPred, ResPred>

§

impl<S, ReqPred, ResPred> Send for LiveReload<S, ReqPred, ResPred>
where ReqPred: Send, ResPred: Send, S: Send,

§

impl<S, ReqPred, ResPred> Sync for LiveReload<S, ReqPred, ResPred>
where ReqPred: Sync, ResPred: Sync, S: Sync,

§

impl<S, ReqPred, ResPred> Unpin for LiveReload<S, ReqPred, ResPred>
where ReqPred: Unpin, ResPred: Unpin, S: Unpin,

§

impl<S, ReqPred = Always, ResPred = ContentTypeStartsWith<&'static str>> !UnwindSafe for LiveReload<S, ReqPred, ResPred>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.