pub type Result<T> = Result<T, GoogleApiError>;
Expand description
A Result
alias with a GoogleApiError
for the Err case.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(GoogleApiError),
}
pub type Result<T> = Result<T, GoogleApiError>;
A Result
alias with a GoogleApiError
for the Err case.
pub enum Result<T> {
Ok(T),
Err(GoogleApiError),
}