Lines Matching refs:StdError
2 use crate::{Context, Error, StdError};
12 pub trait StdError { interface
19 impl<E> StdError for E
32 impl StdError for Error {
44 E: ext::StdError + Send + Sync + 'static,
121 impl<C, E> StdError for ContextError<C, E>
124 E: StdError + 'static,
131 fn source(&self) -> Option<&(dyn StdError + 'static)> { in source()
136 impl<C> StdError for ContextError<C, Error>
145 fn source(&self) -> Option<&(dyn StdError + 'static)> { in source()
175 impl<T, E> Sealed for Result<T, E> where E: ext::StdError {}