pub type FetchResult = Result<Response, DfnsError>;
pub enum FetchResult { Ok(Response), Err(DfnsError), }
Contains the success value
Contains the error value