MCPcopy Create free account
hub / github.com/caverav/flutterdec / ObjectPoolEntry

Class ObjectPoolEntry

crates/flutterdec-adapter/src/lib.rs:40–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38
39#[derive(Debug, Clone, Serialize, Deserialize)]
40pub 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///

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected