1use crate::*; 2 3/// A type alias for a thread-safe attribute storage. 4/// 5/// This type is used for storing attributes that can be safely shared across threads. 6pub type ThreadSafeAttributeStore = HashMap<String, ArcAnySendSync>;