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

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

This trait adds the ability to serialize signed 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