pub type EmptyResult = RuntimeResult<()>;
pub enum EmptyResult { Ok(()), Err(String), }
Contains the success value
Contains the error value