Build from `message` and `hash` strings. ```lean structure PutResponse where message : String hash : String ```
(message: &str, hash: &str)
| 16 | /// hash : String |
| 17 | /// ``` |
| 18 | pub fn mk(message: &str, hash: &str) -> Self { |
| 19 | let ctor = LeanPutResponse::alloc(0); |
| 20 | ctor.set_obj(0, LeanString::new(message)); |
| 21 | ctor.set_obj(1, LeanString::new(hash)); |
| 22 | ctor |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | impl LeanGetResponse<LeanOwned> { |
nothing calls this directly
no test coverage detected