pub trait Error: Debug + Display { // Provided method fn source(&self) -> Option<&(dyn Error + 'static)> { ... } }