(ctx: &str, e: impl std::fmt::Display)
| 14 | pub(super) const MAX_COLLECTION: &str = "\u{10ffff}"; |
| 15 | |
| 16 | pub(super) fn redb_err(ctx: &str, e: impl std::fmt::Display) -> crate::Error { |
| 17 | crate::Error::Storage { |
| 18 | engine: "inverted".into(), |
| 19 | detail: format!("{ctx}: {e}"), |
| 20 | } |
| 21 | } |
no outgoing calls
no test coverage detected