Writes an `u16` to `buf`.
(buf: &mut F, u: u16)
| 176 | |
| 177 | /// Writes an `u16` to `buf`. |
| 178 | pub fn format_uint16<F>(buf: &mut F, u: u16) -> Nestable |
| 179 | where |
| 180 | F: FormatBuffer, |
| 181 | { |
| 182 | write!(buf, "{}", u); |
| 183 | Nestable::Yes |
| 184 | } |
| 185 | |
| 186 | /// Parses an [`u32`] from `s`. |
| 187 | /// |
no outgoing calls
no test coverage detected