pub type FetchResult<T> = Result<T, FetchError>;Expand description
Represents the result of a fetch operation
Aliased Type§
pub enum FetchResult<T> {
Ok(T),
Err(FetchError),
}pub type FetchResult<T> = Result<T, FetchError>;Represents the result of a fetch operation
pub enum FetchResult<T> {
Ok(T),
Err(FetchError),
}