Trait il2_iltags::io::data::ILIntWriter[][src]

pub trait ILIntWriter {
    fn write_ilint(&mut self, value: u64) -> Result<()>;
}
Expand description

This trait adds the ability to write ILInt values.

Required methods

Writes the ILInt value.

Arguments:

  • value: The value to write;

Returns:

  • Ok(()): For success;
  • Err(_): For failure;

Trait Implementations

Serializes an ILInt value. Read more

Implementors