pub struct ApiError(pub(super) anyhow::Error); impl From for ApiError where E: Into, { fn from(err: E) -> Self { Self(err.into()) } }