-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#[derive(uniffi::Record)]
should support #[uniffi::skip]
attribute to skip fields
#2404
Comments
[derive(uniffi::Record)]
should support #[uniffi::skip]
attribute to skip fields#[derive(uniffi::Record)]
should support #[uniffi::skip]
attribute to skip fields
How would this work when the record was passed back from the foreign language -> Rust? At that point, we'd need to fill in some value for the field. This is kind of similar to the situation we found ourselves in with "flat" errors. |
Its Default value sounds like the reasonable approach. You might say "but it doesn't look like a good idea to do that, from a type safety POV", but that's up to the library users to decide. |
Those 2 approaches are not exactly compatible though. If we go with the default approach, that means we need to generate a code to lift the types, using To me, the second option seems more useful -- I want to define a struct that is only passed from Rust -> the foreign language and I want to skip certain fields. The first option would also be possible, but it seems kind of confusing given that we already have a |
Right now the only way to pass the struct through uniffi with different fields is to create a "close but not quite" struct with the missing fields.
Serde has lots of custom attributes to control deserialization, uniffi could support a few of those.
#[uniffi::skip]
is almost trivial to implement.This doesn't make much sense for
Object
orEnum
, though.The text was updated successfully, but these errors were encountered: