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