module Traces

def self.trace_context

@returns [Object] The current trace context.

You should prefer to use the new `Traces.current_context` family of methods.

This is a default implementation, which can be replaced by the backend.

Capture the current trace context for remote propagation.
def self.trace_context
	nil
end