Searched refs:ContextError (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/anyhow/src/ |
D | error.rs | 159 let error: ContextError<C, E> = ContextError { context, error }; in from_context() 162 object_drop: object_drop::<ContextError<C, E>>, in from_context() 163 object_ref: object_ref::<ContextError<C, E>>, in from_context() 165 object_mut: object_mut::<ContextError<C, E>>, in from_context() 166 object_boxed: object_boxed::<ContextError<C, E>>, in from_context() 291 let error: ContextError<C, Error> = ContextError { in context() 297 object_drop: object_drop::<ContextError<C, Error>>, in context() 298 object_ref: object_ref::<ContextError<C, Error>>, in context() 300 object_mut: object_mut::<ContextError<C, Error>>, in context() 301 object_boxed: object_boxed::<ContextError<C, Error>>, in context() [all …]
|
D | context.rs | 1 use crate::error::ContextError; 99 impl<C, E> Debug for ContextError<C, E> implementation 112 impl<C, E> Display for ContextError<C, E> implementation 121 impl<C, E> StdError for ContextError<C, E> implementation 136 impl<C> StdError for ContextError<C, Error> implementation
|
/external/autotest/client/cros/networking/ |
D | shill_context.py | 16 class ContextError(Exception): class 129 raise ContextError('Could not obtain a service object.') 165 raise ContextError('Could not obtain a service object.')
|