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