(value: Value, t: Type, is_input_private: bool)
| 1475 | } |
| 1476 | |
| 1477 | fn prepare_value(value: Value, t: Type, is_input_private: bool) -> Result<Value> { |
| 1478 | if is_input_private { |
| 1479 | let tuple = prepare_private_value(value, t)?; |
| 1480 | return Ok(Value::from_vector(tuple)); |
| 1481 | } |
| 1482 | Ok(value) |
| 1483 | } |
| 1484 | |
| 1485 | fn prepare_input( |
| 1486 | input_types: Vec<Type>, |
no test coverage detected