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