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