pub trait DurabilitySink<C>: DurabilityWriter<C> + RecoveryReader<C> { }Expand description
Combined trait for sinks that support both writing and reading checkpoints.
Implementors should implement DurabilityWriter and RecoveryReader directly;
this trait is a convenience blanket that auto-implements from the two sub-traits.