Enum snafu::guide::examples::backtrace::ConfigFileError [−][src]
pub enum ConfigFileError {
Dummy {
backtrace: Backtrace,
},
}
Expand description
This is a placeholder example and can be ignored.
Variants
Fields of Dummy
backtrace: Backtrace
Trait Implementations
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
The lower-level source of this error, if any. Read more
fn iter_chain(&self) -> ChainCompat<'_>ⓘNotable traits for ChainCompat<'a>impl<'a> Iterator for ChainCompat<'a> type Item = &'a dyn Error;
where
Self: AsErrorSource,
fn iter_chain(&self) -> ChainCompat<'_>ⓘNotable traits for ChainCompat<'a>impl<'a> Iterator for ChainCompat<'a> type Item = &'a dyn Error;
where
Self: AsErrorSource,
Notable traits for ChainCompat<'a>
impl<'a> Iterator for ChainCompat<'a> type Item = &'a dyn Error;
Returns an iterator for traversing the chain of errors,
starting with the current error
and continuing with recursive calls to Error::source
. Read more