Skip to main content

InMemoryError

Type Alias InMemoryError 

Source
pub type InMemoryError = PolicyError;
Expand description

Error type returned by InMemoryStore operations.

Aliased Type§

pub enum InMemoryError {
    NotFound(String),
    Poisoned,
}

Variants§

§

NotFound(String)

Direct lookup against an unknown entry key.

§

Poisoned

An internal lock was poisoned by a previous panic. The affected instance should be discarded.