Skip to main content

rs_teststand/execution/
mod.rs

1//! Running sequences.
2
3#[allow(
4    clippy::module_inception,
5    reason = "file is named after the type it holds"
6)]
7pub mod execution;
8pub mod result_list;
9pub mod sequence_context;
10mod termination_option;
11pub(crate) mod thread;
12
13pub use execution::Execution;
14pub use result_list::{ResultList, ResultValue, StepResult};
15pub use sequence_context::SequenceContext;
16pub use termination_option::ThreadTerminationOption;
17pub use thread::Thread;