| 1035 | #[cfg_attr(feature = "serde", serde(deny_unknown_fields))] |
| 1036 | #[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))] |
| 1037 | pub struct Node { |
| 1038 | role: Role, |
| 1039 | actions: u32, |
| 1040 | child_actions: u32, |
| 1041 | flags: u32, |
| 1042 | properties: Properties, |
| 1043 | } |
| 1044 | |
| 1045 | impl PropertyIndices { |
| 1046 | fn get<'a>(&self, values: &'a [PropertyValue], id: PropertyId) -> &'a PropertyValue { |
no outgoing calls
no test coverage detected