Never name a UniFFI-exported method to_string. UniFFI maps Rust's to_string to Kotlin's toString, which conflicts with Any.toString() and causes a compilation error ('toString' hides member of supertype 'Any' and needs 'override' modifier). Use a descriptive name instead (e.g., to_hex_string, to_decimal_string, to_json).