You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Roto should be able to read and write fields from Rust types. These fields need to be registered with their offsets and types. This should be done with a declarative macro like so:
rt.register_clone_type(Foo,fields!{Foo: bar, baz });
Roto should be able to read and write fields from Rust types. These fields need to be registered with their offsets and types. This should be done with a declarative macro like so:
The fields macro would expand to something like:
where
create_type_description
would be implemented like:Similarly, there should be a way to get enum variants into Roto.
The text was updated successfully, but these errors were encountered: