(&self, ty: &str, val: Bytes)
| 94 | } |
| 95 | |
| 96 | fn bytes_v(&self, ty: &str, val: Bytes) -> Bytes { |
| 97 | let mut msg = Bytes::new(); |
| 98 | msg.identifier(ty); |
| 99 | msg.blob(val); |
| 100 | msg.push_str("bytes"); |
| 101 | msg |
| 102 | } |
| 103 | |
| 104 | fn arr_v<I: Iterator<Item = Bytes>>(&self, iter: I) -> Bytes { |
| 105 | let mut msg = Bytes::new(); |
no test coverage detected