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