pub type Result<T> = Result<T, GitGlobalError>;
Expand description
Our Result
alias with GitGlobalError
as the error type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(GitGlobalError),
}
pub type Result<T> = Result<T, GitGlobalError>;
Our Result
alias with GitGlobalError
as the error type.
pub enum Result<T> {
Ok(T),
Err(GitGlobalError),
}