Trait zip::unstable::LittleEndianWriteExt

source ·
pub trait LittleEndianWriteExt: Write {
    // Provided methods
    fn write_u16_le(&mut self, input: u16) -> Result<()> { ... }
    fn write_u32_le(&mut self, input: u32) -> Result<()> { ... }
    fn write_u64_le(&mut self, input: u64) -> Result<()> { ... }
    fn write_u128_le(&mut self, input: u128) -> Result<()> { ... }
}
Expand description

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

Provided Methods§

source

fn write_u16_le(&mut self, input: u16) -> Result<()>

source

fn write_u32_le(&mut self, input: u32) -> Result<()>

source

fn write_u64_le(&mut self, input: u64) -> Result<()>

source

fn write_u128_le(&mut self, input: u128) -> Result<()>

Implementors§