Type Alias rustls_native_certs::PartialResult
source · pub type PartialResult<T, E> = Result<T, (Option<T>, E)>;
Expand description
Like Result<T,E>
, but allows for functions that can return partially complete
work alongside an error.
This type is available only if the crate is built with the “rustls” feature.
Aliased Type§
enum PartialResult<T, E> {
Ok(T),
Err((Option<T>, E)),
}