change Interner to pub(crate)

This commit is contained in:
Jacob Lifshay 2026-02-02 15:42:12 -08:00
parent 11281a9842
commit 26b0dc3fd8
Signed by: programmerjake
SSH key fingerprint: SHA256:HnFTLGpSm4Q4Fj502oCFisjZSoakwEuTsJJMSke63RQ

View file

@ -598,7 +598,7 @@ struct InternerState<T: ?Sized + 'static + Send + Sync> {
hasher: DefaultBuildHasher,
}
pub struct Interner<T: ?Sized + 'static + Send + Sync> {
pub(crate) struct Interner<T: ?Sized + 'static + Send + Sync> {
state: Mutex<InternerState<T>>,
}