Enum cache_control::Cachability[][src]

pub enum Cachability {
    Public,
    Private,
    NoCache,
    OnlyIfCached,
}

How the data may be cached.

Variants

Any cache can cache this data.

Data cannot be cached in shared caches.

No one can cache this data.

Cache the data the first time, and use the cache from then on.

Trait Implementations

impl Eq for Cachability
[src]

impl PartialEq for Cachability
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for Cachability
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Cachability

impl Sync for Cachability