Struct sp_tracing::WasmMetadata [−][src]
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: WasmLevelThe level of this entry
file: Vec<u8>The file this was emitted from – useful for debugging; &'static str converted to bytes
line: u32The specific line number in the file – useful for debugging
module_path: Vec<u8>The module path; &'static str converted to bytes
is_span: boolWhether this is a call to span! or event!
fields: WasmFieldsThe list of fields specified in the call
Trait Implementations
impl Clone for WasmMetadata[src]
fn clone(&self) -> WasmMetadata[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for WasmMetadata[src]
impl Decode for WasmMetadata[src]
fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>[src]
__codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
pub fn skip<I>(input: &mut I) -> Result<(), Error> where
I: Input, [src]
I: Input,
pub fn encoded_fixed_size() -> Option<usize>[src]
impl Default for WasmMetadata[src]
impl Encode for WasmMetadata[src]
fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)[src]
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy
)
pub fn size_hint(&self) -> usize[src]
pub fn encode(&self) -> Vec<u8, Global>[src]
pub fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R, [src]
F: FnOnce(&[u8]) -> R,
pub fn encoded_size(&self) -> usize[src]
impl EncodeLike<WasmMetadata> for WasmMetadata[src]
impl From<&'_ Metadata<'_>> for WasmMetadata[src]
fn from(wm: &Metadata<'_>) -> WasmMetadata[src]
impl From<&'_ WasmMetadata> for &'static Metadata<'static>[src]
fn from(wm: &WasmMetadata) -> &'static Metadata<'static>[src]
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
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<S> Codec for S where
S: Decode + Encode, [src]
S: Decode + Encode,
impl<T> DecodeAll for T where
T: Decode, [src]
T: Decode,
impl<T> DecodeLimit for T where
T: Decode, [src]
T: Decode,
pub fn decode_all_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>[src]
pub fn decode_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>[src]
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode, [src]
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode, [src]
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode, [src]
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode, [src]
T: Encode,
impl<T> EncodeLike<Box<T, Global>> for T where
T: Encode, [src]
T: Encode,
impl<'a, T> EncodeLike<Cow<'a, T>> for T where
T: ToOwned + Encode, [src]
T: ToOwned + Encode,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode, [src]
T: Encode,
impl<T> From<T> for T[src]
impl<S> FullCodec for S where
S: Decode + FullEncode, [src]
S: Decode + FullEncode,
impl<S> FullEncode for S where
S: Encode + EncodeLike<S>, [src]
S: Encode + EncodeLike<S>,
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> KeyedVec for T where
T: Codec, [src]
T: Codec,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,