Home
last modified time | relevance | path

Searched refs:BoxedError (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/anyhow/src/
Dwrapper.rs52 pub struct BoxedError(pub Box<dyn StdError + Send + Sync>); struct
55 impl Debug for BoxedError { implementation
62 impl Display for BoxedError { implementation
69 impl StdError for BoxedError { implementation
Derror.rs184 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()
/external/rust/crates/log/src/kv/
Derror.rs12 Boxed(std_support::BoxedError),
49 pub(super) type BoxedError = Box<dyn error::Error + Send + Sync>; typedef
55 E: Into<BoxedError>, in boxed() argument