1 2 3 4 5 6 7
/// A marker trait used to enable plugin interoperability. pub trait CollectionMarker: Send + Sync + 'static {} /// Default collection marker. pub struct DefaultMarker; impl CollectionMarker for DefaultMarker {}