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