pub trait WalTypes{
type Action: Debug + Clone + Codec + Send + 'static;
type Checkpoint: Debug + Clone + PartialEq + Eq + Codec + Send + Sync + 'static;
type Callback: Callback;
}Expand description
Defines the concrete types used by the WAL.
Required Associated Types§
type Action: Debug + Clone + Codec + Send + 'static
type Checkpoint: Debug + Clone + PartialEq + Eq + Codec + Send + Sync + 'static
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".