pub type Pod = Result<(), Error>;
Flexible result
pub enum Pod { Ok(()), Err(Error), }
Contains the success value
Contains the error value