Searched defs:BoxedError (Results 1 – 2 of 2) sorted by relevance
52 pub struct BoxedError(pub Box<dyn StdError + Send + Sync>); struct55 impl Debug for BoxedError { implementation62 impl Display for BoxedError { implementation69 impl StdError for BoxedError { implementation
49 pub(super) type BoxedError = Box<dyn error::Error + Send + Sync>; typedef55 E: Into<BoxedError>, in boxed()