(self, mut f: impl FnMut(&str, &'a SceneValue))
| 737 | SceneValue::Vec4 { x, y, z, w } => Ok(Self::Vec4([*x, *y, *z, *w])), |
| 738 | _ => Err(()), |
| 739 | } |
| 740 | } |
| 741 | } |
| 742 | |
| 743 | impl From<ConstParamValue> for SceneValue { |
| 744 | fn from(value: ConstParamValue) -> Self { |
| 745 | match value { |
| 746 | ConstParamValue::Bool(v) => Self::Bool(v), |
no test coverage detected