pub trait CheckpointStoreFactory:
Send
+ Sync
+ 'static {
// Required methods
fn id(&self) -> CheckpointStoreId;
fn create(&self) -> Arc<dyn CheckpointStore>;
}Required Methods§
fn id(&self) -> CheckpointStoreId
fn create(&self) -> Arc<dyn CheckpointStore>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".