pub enum CacheBackend {
Redis,
Memcached,
}Expand description
Cache backend type.
Variants§
Trait Implementations§
Source§impl Clone for CacheBackend
impl Clone for CacheBackend
Source§fn clone(&self) -> CacheBackend
fn clone(&self) -> CacheBackend
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CacheBackend
impl Debug for CacheBackend
impl Eq for CacheBackend
Source§impl PartialEq for CacheBackend
impl PartialEq for CacheBackend
impl StructuralPartialEq for CacheBackend
Auto Trait Implementations§
impl Freeze for CacheBackend
impl RefUnwindSafe for CacheBackend
impl Send for CacheBackend
impl Sync for CacheBackend
impl Unpin for CacheBackend
impl UnsafeUnpin for CacheBackend
impl UnwindSafe for CacheBackend
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