Skip to main content

CombineErrors

Trait CombineErrors 

Source
pub(crate) trait CombineErrors: Iterator {
    type Ok;

    // Required method
    fn try_combine_syn_errors(self) -> Result<Vec<Self::Ok>>;
}

Required Associated Types§

Required Methods§

Implementors§

Source§

impl<I, T> CombineErrors for I
where I: Iterator<Item = Result<T>>,

Source§

type Ok = T

⚠️ Internal Docs ⚠️ Not Public API 👉 Official Docs Here