Struct sp_tracing::WasmMetadata
source · [−]pub struct WasmMetadata {
pub name: Vec<u8>,
pub target: Vec<u8>,
pub level: WasmLevel,
pub file: Vec<u8>,
pub line: u32,
pub module_path: Vec<u8>,
pub is_span: bool,
pub fields: WasmFields,
}
Expand description
Metadata provides generic information about the specifc location of the
span!
or event!
call on the wasm-side.
Fields
name: Vec<u8>
The name given to event!
/span!
, &'static str
converted to bytes
target: Vec<u8>
The given target to event!
/span!
– or module-name, &'static str
converted to bytes
level: WasmLevel
The level of this entry
file: Vec<u8>
The file this was emitted from – useful for debugging; &'static str
converted to bytes
line: u32
The specific line number in the file – useful for debugging
module_path: Vec<u8>
The module path; &'static str
converted to bytes
is_span: bool
Whether this is a call to span!
or event!
fields: WasmFields
The list of fields specified in the call
Trait Implementations
Performs the conversion.
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for WasmMetadata
impl Send for WasmMetadata
impl Sync for WasmMetadata
impl Unpin for WasmMetadata
impl UnwindSafe for WasmMetadata
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more