Trait mhost::error::Errors

source ·
pub trait Errors {
    // Required method
    fn errors(&self) -> Box<dyn Iterator<Item = Box<&dyn Error>> + '_>;
}
Expand description

This trait enables collections of results or responses to filter just for their errors.

Required Methods§

source

fn errors(&self) -> Box<dyn Iterator<Item = Box<&dyn Error>> + '_>

Implementors§