1 2 3 4 5 6 7 8 9
//! Things only used for testing use std::sync::atomic::Ordering; use crate::logging::UNSUPPORTED_KEYS; pub fn num_unsupported_keys() -> u32 { UNSUPPORTED_KEYS.load(Ordering::Relaxed) }