pub struct DirectedCalcReport {
pub request_id: RequestId,
pub cells: Vec<DirectedCellResult>,
}Expand description
Aggregate result of a directed calculation request.
Fields§
§request_id: RequestIdStable request identity.
cells: Vec<DirectedCellResult>Root outcomes in canonical path order.
Trait Implementations§
Source§impl Clone for DirectedCalcReport
impl Clone for DirectedCalcReport
Source§fn clone(&self) -> DirectedCalcReport
fn clone(&self) -> DirectedCalcReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for DirectedCalcReport
impl !UnwindSafe for DirectedCalcReport
impl Freeze for DirectedCalcReport
impl Send for DirectedCalcReport
impl Sync for DirectedCalcReport
impl Unpin for DirectedCalcReport
impl UnsafeUnpin for DirectedCalcReport
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