pub struct SpanNode {
pub name: String,
pub self_us: u64,
pub total_us: u64,
pub calls: u32,
pub children: Vec<SpanNode>,
pub is_parallel: bool,
pub properties: Vec<(String, String)>,
}Fields§
§name: String§self_us: u64§total_us: u64§calls: u32§children: Vec<SpanNode>§is_parallel: bool§properties: Vec<(String, String)>Trait Implementations§
Source§impl<'de> Deserialize<'de> for SpanNode
impl<'de> Deserialize<'de> for SpanNode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SpanNode
impl RefUnwindSafe for SpanNode
impl Send for SpanNode
impl Sync for SpanNode
impl Unpin for SpanNode
impl UnsafeUnpin for SpanNode
impl UnwindSafe for SpanNode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more