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