Niwaka
Niwaka
@chinedufn Can we release a version that includes this feature? I'd like to use it.
Thank you!!
@chinedufn > One approach would be to start by just diving in and writing some tests and implementations for some basic cases such as bridging a Rust struct that has...
As far as I read [`Character` implementation](https://github.com/apple/swift/blob/2c49700ed54f858e803e5a8ba0b9e6001cb08d2e/stdlib/public/core/Character.swift#L65-L74), `Character` seems to be represented as `String`. So, we might need to have something like `RustString` on the Swift Side.
Hi, @chinedufn. According to [Rust char representation](https://doc.rust-lang.org/std/primitive.char.html#representation), >char is always four bytes in size. Unlike Rust's `String`, I guess that Rust `char`'s representation doesn't get encoded as `utf8`. So, we...
>Otherwise, it might be better to use something like https://doc.rust-lang.org/std/primitive.char.html#method.encode_utf8 to encode it to into a byte slice. I see. I'd like to try to implement this feature!!
@lockieluke Thank you for reporting this error. Could you share an minimal project which reproduce this issue?
@Goodbyefrog I think you can start by addressing #168 or this issue as a new contributor.
We have added support returning `Result` from Rust functions. So, I guess that we could easily implement returning `Result` now.
I'll address this issue this week or next week.