pub struct HttpCache<T>where
T: CacheManager,{
pub mode: CacheMode,
pub manager: T,
pub options: HttpCacheOptions,
}
Expand description
Caches requests according to http spec.
Fields§
§mode: CacheMode
Determines the manager behavior.
manager: T
Manager instance that implements the CacheManager
trait.
By default, a manager implementation with cacache
as the backend has been provided, see CACacheManager
.
options: HttpCacheOptions
Override the default cache options.
Implementations§
Source§impl<T> HttpCache<T>where
T: CacheManager,
impl<T> HttpCache<T>where
T: CacheManager,
Sourcepub fn can_cache_request(
&self,
middleware: &impl Middleware,
) -> Result<bool, Box<dyn Error + Sync + Send>>
pub fn can_cache_request( &self, middleware: &impl Middleware, ) -> Result<bool, Box<dyn Error + Sync + Send>>
Determines if the request should be cached
Sourcepub async fn run_no_cache(
&self,
middleware: &mut impl Middleware,
) -> Result<(), Box<dyn Error + Sync + Send>>
pub async fn run_no_cache( &self, middleware: &mut impl Middleware, ) -> Result<(), Box<dyn Error + Sync + Send>>
Runs the actions to preform when the client middleware is running without the cache
Sourcepub async fn run(
&self,
middleware: impl Middleware,
) -> Result<HttpResponse, Box<dyn Error + Sync + Send>>
pub async fn run( &self, middleware: impl Middleware, ) -> Result<HttpResponse, Box<dyn Error + Sync + Send>>
Attempts to run the passed middleware along with the cache
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for HttpCache<T>where
T: Freeze,
impl<T> !RefUnwindSafe for HttpCache<T>
impl<T> Send for HttpCache<T>
impl<T> Sync for HttpCache<T>
impl<T> Unpin for HttpCache<T>where
T: Unpin,
impl<T> !UnwindSafe for HttpCache<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more