//! Mapping from Redis / connection-pool failures to [`aa_storage::StorageError`].
useaa_storage::StorageError;/// Map any backend transport, pool, or protocol failure to
/// [`StorageError::Backend`].
pub(crate)fnbackend<E:core::fmt::Display>(err: E)-> StorageError{StorageError::Backend(err.to_string())}