Searched refs:BoxedError (Results 1 – 3 of 3) 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
184 use crate::wrapper::BoxedError; in from_boxed()185 let error = BoxedError(error); in from_boxed()187 object_drop: object_drop::<BoxedError>, in from_boxed()188 object_ref: object_ref::<BoxedError>, in from_boxed()190 object_mut: object_mut::<BoxedError>, in from_boxed()191 object_boxed: object_boxed::<BoxedError>, in from_boxed()
12 Boxed(std_support::BoxedError),49 pub(super) type BoxedError = Box<dyn error::Error + Send + Sync>; typedef55 E: Into<BoxedError>, in boxed() argument