pub type RequestResult<T> = Result<T, RequestorError>;Expand description
Result type for HTTP requests
Aliased Type§
pub enum RequestResult<T> {
Ok(T),
Err(RequestorError),
}pub type RequestResult<T> = Result<T, RequestorError>;Result type for HTTP requests
pub enum RequestResult<T> {
Ok(T),
Err(RequestorError),
}