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

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

This trait adds the ability to deserialize signed ILInt values.

New since 1.3.0.

Required methods

Deserializes an ILInt value.

Returns:

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

Implementors