This repository has been archived on 2026-06-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Rustdesk/libs/flutter_rust_bridge_codegen/src/ir/field.rs
T
2022-05-31 16:28:12 +08:00

10 lines
167 B
Rust

use crate::ir::*;
#[derive(Debug, Clone)]
pub struct IrField {
pub ty: IrType,
pub name: IrIdent,
pub is_final: bool,
pub comments: Vec<IrComment>,
}