Enum simple_raft::node::AppendError [−][src]
pub enum AppendError<E> { Cancelled { data: Bytes, }, RaftLogErr(E), }
Expand description
An error returned while attempting to append to a Raft log.
Variants
The append to the Raft log was cancelled and should be resubmitted to the current Raft leader.
An error was returned by the RaftLog
implementation.