(&self)
| 814 | pub children: Cow<'static, [SceneKey]>, |
| 815 | pub parent: Option<SceneKey>, |
| 816 | pub script: Option<Cow<'static, str>>, |
| 817 | pub clear_script: bool, |
| 818 | pub root_of: Option<Cow<'static, str>>, |
| 819 | pub script_vars: Cow<'static, [SceneObjectField]>, |
| 820 | } |
| 821 | |
| 822 | #[derive(Debug, Clone)] |
| 823 | pub struct SceneNodeData { |
| 824 | pub node_type: NodeType, |
| 825 | pub fields: Cow<'static, [SceneObjectField]>, |
no test coverage detected