pub use context_wrap::MsgWrap;
pub use off::*;
mod context_wrap;
#[allow(missing_docs)]
mod off;
pub trait OpenSpanExt {
fn get_context(&self) -> Context;
fn get_current_context() -> Context;
fn get_current_bytes() -> Vec<u8>;
fn set_context(&self, context: Context);
fn set_current_context(context: Context);
fn set_current_bytes(bytes: Vec<u8>);
fn display_context(&self) -> String;
}