Returns metadata about a specific field, including its byte offset, size, and type information.
Examples
if (FALSE) { # \dontrun{
Point <- ffi_struct(x = ffi_int(), y = ffi_double())
ffi_field_info(Point, "x")
# <FieldInfo 'x' type=int, offset=0, size=4>
ffi_field_info(Point, "y")
# <FieldInfo 'y' type=double, offset=8, size=8> (offset 8 due to alignment)
} # }