Type Alias Integer

Source
pub type Integer = c_longlong;
Expand description

Type of signed Lua integers. Also known as lua_Integer.

The actual definition for this type depends on the use-32-bits feature. If that feature is enabled, then

  • if c_int is big enough, then this is c_int,
  • otherwise, this is c_long.

If the feature is not enabled, then this is c_longlong.