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