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

pub trait SignedILIntWriter {
    fn write_signed_ilint(&mut self, value: i64) -> Result<()>;
}
Expand description

This trait adds the ability to write signed ILInt values.

New since 1.2.1

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