pub type Result<T> = Result<T, RaftError>;
pub enum Result<T> { Ok(T), Err(RaftError), }
Contains the success value
Contains the error value