Files
ReactionSystems/src/rsprocess/structure.rs

18 lines
536 B
Rust
Raw Normal View History

2025-07-10 15:02:14 +02:00
//! Module for all basic structures.
2025-05-19 00:10:23 +02:00
// -----------------------------------------------------------------------------
// RSassert
// -----------------------------------------------------------------------------
2025-07-29 19:35:25 +02:00
2025-08-17 01:01:56 +02:00
pub type RSassert =
2025-08-18 20:39:43 +02:00
crate::rsprocess::assert::rsassert::useful_types_edge_relabeler::RSassert;
2025-07-29 19:35:25 +02:00
pub mod assert {
pub use crate::rsprocess::assert::dsl::*;
2025-05-19 00:10:23 +02:00
}
2025-08-18 20:39:43 +02:00
/// Export of useful values from submodule of submodule
pub mod rsassert {
pub use crate::rsprocess::assert::rsassert::useful_types_edge_relabeler::*;
}