pub trait TagHandler: Send + Sync { // Required methods fn construct(&self, value: &str) -> Result<Value>; fn represent(&self, value: &Value) -> Result<String>; }
Trait for custom tag handlers
Construct a value from the tagged string
Represent a value as a string for this tag