(buf: &mut Vec<u8>, val: u32)
| 135 | } |
| 136 | |
| 137 | fn write_u32(buf: &mut Vec<u8>, val: u32) { |
| 138 | buf.extend_from_slice(&val.to_le_bytes()); |
| 139 | } |
| 140 | |
| 141 | fn write_f64(buf: &mut Vec<u8>, val: f64) { |
| 142 | buf.extend_from_slice(&val.to_le_bytes()); |
no outgoing calls
no test coverage detected