| 493 | |
| 494 | #[derive(Debug, Clone, Serialize, Deserialize, Default)] |
| 495 | pub struct MmioModels { |
| 496 | #[serde(default)] |
| 497 | pub bitextract: IndexMap<String, Bitextract>, |
| 498 | #[serde(default)] |
| 499 | pub constant: IndexMap<String, Constant>, |
| 500 | #[serde(default)] |
| 501 | pub passthrough: IndexMap<String, Passthrough>, |
| 502 | #[serde(default)] |
| 503 | pub set: IndexMap<String, Set>, |
| 504 | #[serde(default)] |
| 505 | pub unmodeled: IndexMap<String, Unmodeled>, |
| 506 | } |
| 507 | |
| 508 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 509 | pub struct Bitextract { |
nothing calls this directly
no outgoing calls
no test coverage detected