pub struct SpanName;
impl SpanName {
const PREFIX: &'static str = "lmn";
pub const RUN: &'static str = "lmn.run";
pub const TEMPLATE_PARSE: &'static str = "lmn.template.parse";
pub const TEMPLATE_VALIDATE_PLACEHOLDERS: &'static str = "lmn.template.validate_placeholders";
pub const TEMPLATE_CHECK_CIRCULAR_REFS: &'static str = "lmn.template.check_circular_refs";
pub const RESPONSE_TEMPLATE_PARSE: &'static str = "lmn.response_template.parse";
pub const REQUESTS: &'static str = "lmn.requests";
pub fn prefix() -> &'static str {
Self::PREFIX
}
}