| 204 | #[derive(Clone, Debug, Deserialize)] |
| 205 | #[serde(rename_all = "camelCase")] |
| 206 | pub struct FieldInstance { |
| 207 | #[serde(rename = "__identifier")] |
| 208 | pub identifier: String, |
| 209 | |
| 210 | // TODO: Make this nicer |
| 211 | #[serde(rename = "__value")] |
| 212 | pub value: Option<serde_json::Value>, |
| 213 | } |
| 214 | |
| 215 | fn deserialize_ldtk_point<'de, D>(de: D) -> Result<IVec2, D::Error> |
| 216 | where |
nothing calls this directly
no outgoing calls
no test coverage detected