pub struct TraceHop {
pub unit_id: u64,
pub language: Language,
pub via_edge: Option<EdgeType>,
}Expand description
A single hop in a cross-language trace.
Fields§
§unit_id: u64The unit at this hop.
language: LanguageLanguage of this unit.
via_edge: Option<EdgeType>The edge type that led here.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TraceHop
impl RefUnwindSafe for TraceHop
impl Send for TraceHop
impl Sync for TraceHop
impl Unpin for TraceHop
impl UnsafeUnpin for TraceHop
impl UnwindSafe for TraceHop
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