pub struct GraphExecResult {
pub graph_name: String,
pub node_results: Vec<NodeExecResult>,
pub total_duration_us: u64,
pub execution_number: u64,
}Expand description
Result of executing a graph
Fields§
§graph_name: String§node_results: Vec<NodeExecResult>§total_duration_us: u64§execution_number: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphExecResult
impl RefUnwindSafe for GraphExecResult
impl Send for GraphExecResult
impl Sync for GraphExecResult
impl Unpin for GraphExecResult
impl UnsafeUnpin for GraphExecResult
impl UnwindSafe for GraphExecResult
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