pub struct TestScaffoldReport {
pub module_relative: String,
pub mocked_activities: usize,
pub timer_advances: usize,
pub written: bool,
}Expand description
The result of generating (or checking) a workflow’s aion/testing skeleton.
Fields§
§module_relative: StringThe generated scaffold module path, relative to the project root.
mocked_activities: usizeThe number of activities pre-mocked in the scaffold.
timer_advances: usizeThe number of clock advances scaffolded (one per durable timer).
written: boolWhether the module was written (Write) or only checked (Check).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TestScaffoldReport
impl RefUnwindSafe for TestScaffoldReport
impl Send for TestScaffoldReport
impl Sync for TestScaffoldReport
impl Unpin for TestScaffoldReport
impl UnsafeUnpin for TestScaffoldReport
impl UnwindSafe for TestScaffoldReport
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