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
Sorry for the deluge of questions! Is it possible to return Vec<Vec<SomeStruct>> from a bridge function? It says the inner Vec is not a supported type. We've tried various things (currently resorting to a single-field struct which kind of sucks).
The text was updated successfully, but these errors were encountered:
Ah wrapping the outer Vec is nicer but we need to be able to access the contents from C++ unfortunately. I presume supporting Vec<Vec<>> and other nested types isn't really hard, it just hasn't been done yet?
Sorry for the deluge of questions! Is it possible to return
Vec<Vec<SomeStruct>>
from a bridge function? It says the innerVec
is not a supported type. We've tried various things (currently resorting to a single-field struct which kind of sucks).The text was updated successfully, but these errors were encountered: