Resolve FIXME to derive Debug for StatementCache

This commit is contained in:
Josh Stone 2024-01-09 15:57:41 -08:00
parent 950b88d69d
commit ef067b5eff

View File

@ -57,7 +57,7 @@ impl Connection {
}
/// Prepared statements LRU cache.
// #[derive(Debug)] // FIXME: https://github.com/kyren/hashlink/pull/4
#[derive(Debug)]
pub struct StatementCache(RefCell<LruCache<Arc<str>, RawStatement>>);
#[allow(clippy::non_send_fields_in_send_ty)]