[−][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.
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.