Skip to main content

rs_teststand/sequence/
mod.rs

1//! Sequence-file domain wrappers.
2
3pub mod options;
4pub mod result_recording_option;
5pub mod run_mode;
6// The domain is `sequence` and the type it centres on is `Sequence`; naming the
7// file anything else would break the one-file-per-type convention used across
8// the crate for a lint that is purely stylistic here.
9pub mod breakpoint;
10#[allow(
11    clippy::module_inception,
12    reason = "file is named after the type it holds"
13)]
14pub mod sequence;
15pub mod sequence_file;
16pub mod step;
17
18pub use breakpoint::BreakpointScope;
19pub use options::{ConflictHandler, GetSeqFileOptions};
20pub use result_recording_option::ResultRecordingOption;
21pub use run_mode::RunMode;
22pub use sequence::Sequence;
23pub use sequence_file::SequenceFile;
24pub use step::Step;