[][src]Module leb128::write

A module for writing integers encoded as LEB128.

Functions

signed

Write the given signed number using the LEB128 encoding to the given std::io::Writeable. Returns the number of bytes written to w, or an error if writing failed.

unsigned

Write the given unsigned number using the LEB128 encoding to the given std::io::Writeable. Returns the number of bytes written to w, or an error if writing failed.