1 2 3 4 5 6 7
use crate::Error; impl From<reqwest::Error> for Error { fn from(value: reqwest::Error) -> Self { Error::new(value.to_string()) } }