Skip to main content

PartialSuccess

Type Alias PartialSuccess 

Source
pub type PartialSuccess<T, E> = (T, Vec<E>);
Expand description

Represents a successful operation where some parts failed but didn’t prevent overall success. The Vec<E> contains errors from the failed parts that were handled gracefully.