pub struct StateStoreConfig {
pub store_type: String,
pub path: Option<String>,
pub dsn: Option<String>,
}Expand description
Storage configuration (mirrors enact_config::storage::StateStore)
Fields§
§store_type: String§path: Option<String>§dsn: Option<String>Trait Implementations§
Source§impl Clone for StateStoreConfig
impl Clone for StateStoreConfig
Source§fn clone(&self) -> StateStoreConfig
fn clone(&self) -> StateStoreConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 StateStoreConfig
impl RefUnwindSafe for StateStoreConfig
impl Send for StateStoreConfig
impl Sync for StateStoreConfig
impl Unpin for StateStoreConfig
impl UnsafeUnpin for StateStoreConfig
impl UnwindSafe for StateStoreConfig
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