pub type Result<T> = Result<T, FetchError>;
Expand description
Convenience type for functions that return a T
on success or a FetchError
otherwise.
Aliased Type§
enum Result<T> {
Ok(T),
Err(FetchError),
}
pub type Result<T> = Result<T, FetchError>;
Convenience type for functions that return a T
on success or a FetchError
otherwise.
enum Result<T> {
Ok(T),
Err(FetchError),
}