Module raft_consensus::persistent_log[][src]

The persistent storage of Raft state.

In your consuming application you may want to implement this trait on one of your structures to have your own facility for storing Raft log

Note: This is not necessary in your consuming application. The Log is meant to be internally used by the library, while letting this library authors no to be opinionated about how data is stored.

Re-exports

pub use persistent_log::fs::FsLog;
pub use persistent_log::mem::MemLog;

Modules

fs
mem

Enums

Error

Traits

Log

A store of persistent Raft state.