pub trait StringInternerTrait {
// Required method
fn get_or_intern(&self, s: &str) -> Arc<str>;
}Expand description
Trait for string interning functionality.
This trait abstracts over string interner implementations, allowing
MessageMetadata to work with any interner type. The streamweave-graph
package provides a concrete StringInterner implementation that implements
this trait.