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

pub trait SignedILIntReader {
    fn read_signed_ilint(&mut self) -> Result<i64>;
}
Expand description

This trait adds the ability to read signed ILInt values.

New since 1.3.0.

Required methods

Reads the ILInt.

Returns:

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

Trait Implementations

Deserializes an ILInt value. Read more

Implementors