Function mz_repr::strconv::format_bool
source ยท pub fn format_bool<F>(buf: &mut F, b: bool) -> Nestablewhere
F: FormatBuffer,
Expand description
Writes a boolean value into buf
.
true
is encoded as the char 't'
and false
is encoded as the char
'f'
.