| 38 | |
| 39 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 40 | pub struct ObjectPoolEntry { |
| 41 | pub index: u64, |
| 42 | pub kind: String, |
| 43 | pub value: String, |
| 44 | #[serde(default)] |
| 45 | pub decoded_kind: Option<String>, |
| 46 | #[serde(default)] |
| 47 | pub selector: Option<String>, |
| 48 | #[serde(default)] |
| 49 | pub target_va: Option<u64>, |
| 50 | #[serde(default)] |
| 51 | pub owner_class: Option<String>, |
| 52 | #[serde(default)] |
| 53 | pub library_uri: Option<String>, |
| 54 | #[serde(default)] |
| 55 | pub confidence: Option<f64>, |
| 56 | #[serde(default)] |
| 57 | pub source: Option<String>, |
| 58 | } |
| 59 | |
| 60 | /// Hardware layout of the Dart `ObjectPool` object that `x27`/PP points at. |
| 61 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected