pub use off::*;
pub use context_wrap::MsgWrap;
#[cfg(feature = "channels")]
pub mod channel;
mod context_wrap;
#[allow(missing_docs)]
mod off;
pub trait OpenSpanExt {
fn get_context(&self) -> Context;
fn get_current_context() -> Context;
fn get_context_bytes(&self) -> Vec<u8> {
Vec::with_capacity(0)
}
fn get_current_bytes() -> Vec<u8>;
fn set_context(&self, context: Context);
fn set_current_context(context: Context);
#[allow(unused_variables)]
fn set_from_bytes(&self, bytes: Vec<u8>) {}
fn set_current_bytes(bytes: Vec<u8>);
fn display_context(&self) -> String;
}