12 lines
274 B
Rust
12 lines
274 B
Rust
#[derive(Debug, Copy, Clone)]
|
|
pub enum ExitClass {
|
|
/// Headlines and sections.
|
|
Document = 1,
|
|
|
|
/// Elements who take priority over beta elements when matching.
|
|
Alpha = 20,
|
|
|
|
/// Elements who cede priority to alpha elements when matching.
|
|
Beta = 300,
|
|
}
|