pub enum CcrBackendConfig {
InMemory,
Sqlite {
path: PathBuf,
ttl_seconds: u64,
},
Fjall {
path: PathBuf,
},
}Expand description
Backend selection for the server’s CCR store.
Variants§
Trait Implementations§
Source§impl Clone for CcrBackendConfig
impl Clone for CcrBackendConfig
Source§fn clone(&self) -> CcrBackendConfig
fn clone(&self) -> CcrBackendConfig
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 moreAuto Trait Implementations§
impl Freeze for CcrBackendConfig
impl RefUnwindSafe for CcrBackendConfig
impl Send for CcrBackendConfig
impl Sync for CcrBackendConfig
impl Unpin for CcrBackendConfig
impl UnsafeUnpin for CcrBackendConfig
impl UnwindSafe for CcrBackendConfig
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