pub type HeaderResult<T, E = HeaderError> = Result<T, E>;Available on crate feature
p2 only.Expand description
A Result type where the error type defaults to HeaderError.
Aliased Type§
pub enum HeaderResult<T, E = HeaderError> {
Ok(T),
Err(E),
}