1 2 3 4 5
use std::fmt::Display; pub(crate) fn into_anyhow<E: Display>(e: E) -> anyhow::Error { anyhow::anyhow!("{e}") }