Searched defs:BoxedError (Results 1 – 2 of 2) sorted by relevance
55 pub struct BoxedError(pub Box<dyn StdError + Send + Sync>); struct58 impl Debug for BoxedError { implementation65 impl Display for BoxedError { implementation72 impl StdError for BoxedError { implementation
69 pub(super) type BoxedError = Box<dyn error::Error + Send + Sync>; typedef75 E: Into<BoxedError>, in boxed()