1 2 3 4 5 6 7 8 9
use serde::{Deserialize, Serialize}; #[repr(C)] #[derive(Serialize, Deserialize, Debug, Clone)] pub struct CodeImport { pub name: String, pub import: String, pub source: String, }