[][src]Type Definition rustls_native_certs::PartialResult

type PartialResult<T, E> = Result<T, (Option<T>, E)>;

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.