Trait TagParser

Source
pub trait TagParser: 'static {
    // Required method
    fn parse(&self, event: &Event<'_>) -> Option<Tag>;
}
Expand description

A type that can parse Tags from Tracing events.

This trait is blanket-implemented for all Fn(&tracing::Event) -> Option<Tag>, so top-level fns can be used.

See the module-level documentation for more details.

Required Methods§

Source

fn parse(&self, event: &Event<'_>) -> Option<Tag>

Parse a tag from a tracing::Event

Implementors§

Source§

impl TagParser for NoTag

Source§

impl<F> TagParser for F
where F: 'static + Fn(&Event<'_>) -> Option<Tag>,