(&self)
| 24 | |
| 25 | impl PromptValue { |
| 26 | pub fn to_value(&self) -> Value { |
| 27 | match self { |
| 28 | PromptValue::Boolean(b) => Value::scalar(*b), |
| 29 | PromptValue::String(s) => Value::scalar(s.clone()), |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | impl Default for PromptValue { |
no outgoing calls
no test coverage detected