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§
pub 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.
pub enum Result<T> {
Ok(T),
Err(FetchError),
}