pub struct MultiLevelCache { /* private fields */ }Implementations§
Source§impl MultiLevelCache
impl MultiLevelCache
pub fn new() -> MultiLevelCache
pub fn add_cache(self, cache: Box<dyn Cache>) -> MultiLevelCache
Trait Implementations§
Source§impl Cache for MultiLevelCache
impl Cache for MultiLevelCache
fn get(&self, key: &str) -> Result<Option<Vec<u8>>, CacheError>
fn set( &self, key: &str, value: Vec<u8>, ttl: Option<Duration>, ) -> Result<(), CacheError>
fn delete(&self, key: &str) -> Result<(), CacheError>
fn clear(&self) -> Result<(), CacheError>
fn exists(&self, key: &str) -> Result<bool, CacheError>
fn expire(&self, key: &str, ttl: Duration) -> Result<(), CacheError>
fn ttl(&self, key: &str) -> Result<Option<Duration>, CacheError>
Source§impl Default for MultiLevelCache
impl Default for MultiLevelCache
Source§fn default() -> MultiLevelCache
fn default() -> MultiLevelCache
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for MultiLevelCache
impl !UnwindSafe for MultiLevelCache
impl Freeze for MultiLevelCache
impl Send for MultiLevelCache
impl Sync for MultiLevelCache
impl Unpin for MultiLevelCache
impl UnsafeUnpin for MultiLevelCache
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> 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