pub trait TagParser: 'static {
// Required method
fn parse(&self, event: &Event<'_>) -> Option<Tag>;
}
Expand description
A type that can parse Tag
s from Tracing events.
This trait is blanket-implemented for all Fn(&tracing::Event) -> Option<Tag>
,
so top-level fn
s can be used.
See the module-level documentation for more details.