(&mut self, scene: &str)
| 189 | } |
| 190 | |
| 191 | pub(super) fn set_scene_reference(&mut self, scene: &str) { |
| 192 | if let Some(obj) = self.data.as_object_mut() { |
| 193 | obj.insert("scene".to_string(), json!(scene)); |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | pub(super) fn set_subplot_reference(&mut self, subplot: &str) { |
| 198 | if let Some(obj) = self.data.as_object_mut() { |
no outgoing calls
no test coverage detected