pub type Result<T> = Result<T, JarError>;
Type alias for a Result type that uses JarError for error handling.
pub enum Result<T> { Ok(T), Err(JarError), }
Contains the success value
Contains the error value