pub struct TraceEdge {
pub source: String,
pub label: String,
pub target: String,
pub interval: Interval<i64>,
}Expand description
A single edge in a trace corpus.
Fields§
§source: String§label: String§target: String§interval: Interval<i64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TraceEdge
impl RefUnwindSafe for TraceEdge
impl Send for TraceEdge
impl Sync for TraceEdge
impl Unpin for TraceEdge
impl UnsafeUnpin for TraceEdge
impl UnwindSafe for TraceEdge
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