Trait LittleEndianWriteExt

trait LittleEndianWriteExt: Write

Helper methods for writing unsigned integers in little-endian form.

Provided Methods

fn write_u16_le(self: &mut Self, input: u16) -> io::Result<()>
fn write_u32_le(self: &mut Self, input: u32) -> io::Result<()>
fn write_u64_le(self: &mut Self, input: u64) -> io::Result<()>
fn write_u128_le(self: &mut Self, input: u128) -> io::Result<()>

Implementors