(dst: &mut BytesMut, s: &str)
| 423 | } |
| 424 | |
| 425 | fn put_cstring(dst: &mut BytesMut, s: &str) { |
| 426 | dst.put_slice(s.as_bytes()); |
| 427 | dst.put_u8(0); |
| 428 | } |
| 429 | |
| 430 | fn update_message_length(dst: &mut BytesMut, len_pos: usize) { |
| 431 | let len = (dst.len() - len_pos) as i32; |
no outgoing calls
no test coverage detected