It doesn't support running arbitrary rust code. But you can access fields and make calls and use indexing/ranges/etc. You can't do things like use an if block.
Ok indexing and function calls, makes sense. It won't dispatch on types at all for polymorphic functions I assume.
Trait methods don't work, though you can call them directly as functions if you wish.
It doesn't support running arbitrary rust code. But you can access fields and make calls and use indexing/ranges/etc. You can't do things like use an if block.