Searched refs:ErrorImpl (Results 1 – 7 of 7) sorted by relevance
/external/rust/crates/anyhow/src/ |
D | error.rs | 218 let inner: Box<ErrorImpl<E>> = Box::new(ErrorImpl { in construct() 229 let inner = Own::new(inner).cast::<ErrorImpl>(); in construct() 350 unsafe { ErrorImpl::backtrace(self.inner.by_ref()) } in backtrace() 377 unsafe { ErrorImpl::chain(self.inner.by_ref()) } in chain() 530 unsafe { ErrorImpl::error(self.inner.by_ref()) } in deref() 538 unsafe { ErrorImpl::error_mut(self.inner.by_mut()) } in deref_mut() 544 unsafe { ErrorImpl::display(self.inner.by_ref(), formatter) } in fmt() 550 unsafe { ErrorImpl::debug(self.inner.by_ref(), formatter) } in fmt() 564 object_drop: unsafe fn(Own<ErrorImpl>), 565 object_ref: unsafe fn(Ref<ErrorImpl>) -> Ref<dyn StdError + Send + Sync + 'static>, [all …]
|
D | fmt.rs | 2 use crate::error::ErrorImpl; 6 impl ErrorImpl { implementation
|
D | lib.rs | 255 use crate::error::ErrorImpl; 377 inner: Own<ErrorImpl>,
|
D | context.rs | 146 Some(unsafe { crate::ErrorImpl::error(self.error.inner.by_ref()) }) in source()
|
/external/rust/crates/serde_cbor/src/ |
D | error.rs | 13 pub struct Error(ErrorImpl); 38 Error(ErrorImpl { code, offset }) in syntax() 43 Error(ErrorImpl { in io() 52 Error(ErrorImpl { in io() 61 Error(ErrorImpl { in scratch_too_small() 69 Error(ErrorImpl { in scratch_too_small() 82 Error(ErrorImpl { in message() 89 Error(ErrorImpl { in message() 100 Error(ErrorImpl { in message() 107 Error(ErrorImpl { in message() [all …]
|
/external/rust/crates/serde_json/src/ |
D | error.rs | 14 err: Box<ErrorImpl>, 170 struct ErrorImpl { struct 248 err: Box::new(ErrorImpl { code, line, column }), in syntax() 259 err: Box::new(ErrorImpl { in io() 329 impl Display for ErrorImpl { implementation 385 err: Box::new(ErrorImpl { in make_error()
|
/external/rust/crates/serde/src/de/ |
D | value.rs | 53 err: ErrorImpl, 57 type ErrorImpl = Box<str>; typedef 59 type ErrorImpl = (); typedef
|