Skip to main content

factorio_ir/
debug.rs

1#[derive(Debug, Clone, PartialEq, Eq)]
2pub struct FunctionDebug {
3    pub header_comment: String,
4    pub return_type: Option<String>,
5}
6
7#[derive(Debug, Clone, PartialEq, Eq)]
8pub struct StructDebug {
9    pub header_comment: String,
10}