pub type Result<T> = Result<T, JetError>;
Result type alias for AT-Jet operations
pub enum Result<T> { Ok(T), Err(JetError), }
Contains the success value
Contains the error value