diff options
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -178,6 +178,12 @@ impl std::fmt::Display for Error { } } +impl std::error::Error for Error { + fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { + None + } +} + impl From<percent_encoded_character_decoder::Error> for Error { fn from(error: percent_encoded_character_decoder::Error) -> Self { match error { |