Skip to main content

WorkflowSpan

Trait WorkflowSpan 

Source
pub trait WorkflowSpan: Send {
    // Required methods
    fn set_attribute(&mut self, key: &str, value: &str);
    fn add_event(&mut self, name: &str);
    fn end(self: Box<Self>);
}
Expand description

Trait for a mutable span handle.

Required Methods§

Source

fn set_attribute(&mut self, key: &str, value: &str)

Source

fn add_event(&mut self, name: &str)

Source

fn end(self: Box<Self>)

Implementors§