Skip to content

VerificationError: impl std::error::Error

Because VerificationError does not currently impl std::error::Error, VerificationHelper::check() needs a manual conversion to the anyhow Error type. anyhow::Error has From<std::error::Error> (allowing avoiding polluting one's crate with anyhow), and can also make use of anyhow::Context for people who don't mind using it for Sequoia.

Merge request reports