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