toNative method

({int column, int row}) toNative()

Converts to native TSPoint fields using Rust's usize as u32 cast.

Implementation

({int row, int column}) toNative() =>
    (row: row & 0xffffffff, column: column & 0xffffffff);