(&self, ty: &str, r: Addr)
| 115 | } |
| 116 | |
| 117 | fn ref_v(&self, ty: &str, r: Addr) -> Bytes { |
| 118 | let mut msg = Bytes::new(); |
| 119 | msg.identifier(ty); |
| 120 | msg.blob(Bytes::from(r.to_bytes())); |
| 121 | msg.push_str("ref"); |
| 122 | msg |
| 123 | } |
| 124 | |
| 125 | fn struct_v<I: Iterator<Item = (String, Bytes)>>(&self, ty: &str, fields: I) -> Bytes { |
| 126 | let mut msg = Bytes::new(); |
no test coverage detected