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