pub struct RunEvent {
pub at: u64,
pub node: Symbol,
pub kind: Symbol,
pub message: String,
pub edge: Option<(Symbol, Symbol)>,
}Expand description
One execution event.
Fields§
§at: u64Logical time of the event.
node: SymbolThe node the event concerns.
kind: SymbolThe event kind (start, ok, error, route, log).
message: StringA human-readable message.
edge: Option<(Symbol, Symbol)>For a route event, the edge (from-node, to-node) it traversed.
Implementations§
Trait Implementations§
impl Eq for RunEvent
impl StructuralPartialEq for RunEvent
Auto Trait Implementations§
impl Freeze for RunEvent
impl RefUnwindSafe for RunEvent
impl Send for RunEvent
impl Sync for RunEvent
impl Unpin for RunEvent
impl UnsafeUnpin for RunEvent
impl UnwindSafe for RunEvent
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