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

pub trait ILIntReader {
    fn read_ilint(&mut self) -> Result<u64>;
}
Expand description

This trait adds the ability to read ILInt values.

Required methods

Reads the ILInt.

Returns:

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

Implementors