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