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