//! Error handling for the api wrapper.
usethiserror::Error;/// Contains underlying information on why an error has happened with the wrapper.
/// For now, it internally holds a **[`reqwest::Error`]** `struct`.
#[derive(Debug, Error)]pubstructBlueArchiveError(#[from] pub reqwest::Error);implstd::fmt::Display forBlueArchiveError{fnfmt(&self, f:&mutstd::fmt::Formatter<'_>)->std::fmt::Result{write!(f,"{}",self.0)}}