Struct http_cache_semantics::CachePolicy[][src]

pub struct CachePolicy { /* fields omitted */ }
Expand description

Identifies when responses can be reused from a cache, taking into account HTTP RFC 7234 rules for user agents and shared caches. It’s aware of many tricky details such as the Vary header, proxy revalidation, and authenticated responses.

Implementations

Cacheability of an HTTP response depends on how it was requested, so both request and response are required to create the policy.

Caching with customized behavior. See CacheOptions for details.

response_time is a timestamp when the response has been received, usually SystemTime::now().

Returns true if the response can be stored in a cache. If it’s false then you MUST NOT store either the request or the response.

Returns whether the cached response is still fresh in the context of the new request.

If it returns true, then the given request matches the original response this cache policy has been created with, and the response can be reused without contacting the server.

If it returns false, then the response may not be matching at all (e.g. it’s for a different URL or method), or may require to be refreshed first. Either way, the new request’s headers will have been updated for sending it to the origin server.

Tells how long the response has been sitting in cache(s).

Value of the Age header, updated for the current time.

Returns approximate time in milliseconds until the response becomes stale (i.e. not fresh).

After that time (when time_to_live() <= 0) the response might not be usable without revalidation. However, there are exceptions, e.g. a client can explicitly allow stale responses, so always check with before_request().

Stale responses shouldn’t be used without contacting the server (revalidation)

Creates CachePolicy with information combined from the previews response, and the new revalidation response.

Returns {policy, modified} where modified is a boolean indicating whether the response body has been modified, and old cached body can’t be used.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.