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) -> Result<()>
fn write_u32_le(self: &mut Self, input: u32) -> Result<()>
fn write_u64_le(self: &mut Self, input: u64) -> Result<()>
fn write_u128_le(self: &mut Self, input: u128) -> Result<()>

Implementors