Trait il2_iltags::tags::serialization::ILIntSerializer[][src]

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

This trait adds the ability to serialize ILInt values.

Since 1.2.0.

Required methods

Serializes an ILInt value.

Arguments:

  • value: The value to write;

Returns:

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

Implementors