(&self, input: VarInput)
| 1055 | } |
| 1056 | |
| 1057 | fn is_default(&self, input: VarInput) -> Result<bool, VarError> { |
| 1058 | let v = self.definition.parse(input)?; |
| 1059 | Ok(self.definition.default_value() == v.as_ref()) |
| 1060 | } |
| 1061 | |
| 1062 | pub fn value_dyn(&self) -> &dyn Value { |
| 1063 | self.persisted_value |
nothing calls this directly
no test coverage detected