This repository has been archived on 2024-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
2023-12-23 17:57:10 +00:00
|
|
|
|
|
|
|
|
2023-12-24 10:28:30 +00:00
|
|
|
nasp trinitrix {
|
|
|
|
/// This enum can't be called Trinitrix, as that's already the name of the namespace
|
|
|
|
/// (if it's in Pascal case)
|
|
|
|
enum Trinitrix {
|
|
|
|
High,
|
|
|
|
Medium,
|
|
|
|
Low,
|
|
|
|
};
|
2023-12-23 15:07:17 +00:00
|
|
|
|
2023-12-24 10:28:30 +00:00
|
|
|
fn execute_callback(priority: Trinitrix);
|
|
|
|
}
|
2023-12-23 15:07:17 +00:00
|
|
|
|
|
|
|
|
2023-12-24 10:28:30 +00:00
|
|
|
// That's a flat out lie, but it results in a rather nice syntax highlight compared to nothing:
|
|
|
|
// vim: syntax=rust
|