mirror of
https://github.com/github/codeql.git
synced 2026-02-17 15:33:45 +01:00
12 lines
204 B
Rust
12 lines
204 B
Rust
use std::fmt::Display;
|
|
|
|
pub enum CodegenType {
|
|
Grammar,
|
|
}
|
|
|
|
impl Display for CodegenType {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(f, "Grammar")
|
|
}
|
|
}
|