pub struct MultiLevelCache { /* private fields */ }Implementations§
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>
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