pub trait SpanBuilder<S>where
    S: Send + Sync,
{ fn start(self) -> Span<S>; fn child_of(self, parent: &Span<S>) -> Self; fn start_time(self, time: SystemTime) -> Self; fn tag(self, tag: Tag) -> Self; }

Required Methods

Implementors