current state of data exchange between rust and frontend #3208
-
Hi! Read throw all discussions looking for detailed explanation of dataflow between rust side and frontend, I came across question asked about year ago: #1268 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
For this specific use-case current workarounds that come to mind would be to use either a custom protocol, like our streaming example does or via the file system (if saving the images is acceptable) and using Otherwise we're still looking at generally improving the serde+transport situation but this won't make it into v1. |
Beta Was this translation helpful? Give feedback.
For this specific use-case current workarounds that come to mind would be to use either a custom protocol, like our streaming example does or via the file system (if saving the images is acceptable) and using
convertFileSrc
to read them or set them as a file source (this uses a custom protocol too).Otherwise we're still looking at generally improving the serde+transport situation but this won't make it into v1.