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