pub type PullResult<T, E> = Result<T, (E, Option<Duration>)>;Expand description
Result type returned by pulling operations.
On error, returns the error alongside an optional retry-after duration.
Aliased Type§
pub enum PullResult<T, E> {
Ok(T),
Err((E, Option<Duration>)),
}