pub type Result<T> = Result<T, CoreError>;
Result type for jugar-core operations
pub enum Result<T> { Ok(T), Err(CoreError), }
Contains the success value
Contains the error value