Function rmp::encode::write_f32

source ·
pub fn write_f32<W: RmpWrite>(
    wr: &mut W,
    val: f32,
) -> Result<(), ValueWriteError<W::Error>>
Expand description

Encodes and attempts to write an f32 value as a 5-byte sequence into the given write.

The first byte becomes the f32 marker and the others will represent the data itself.

§Errors

This function will return ValueWriteError on any I/O error occurred while writing either the marker or the data.