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
Hi I'm trying to use rnet for this library https://github.com/lukaslueg/railroad which makes heavy use of generics
when I add the Net tag to a struct like so
You cannot expose generics through rnet (or indeed any Rust <=> non-Rust interop mechanism) since Rust generics must be instantiated with known types are compile time, whereas in .net, generics are instantiated at runtime.
Hi I'm trying to use rnet for this library https://github.com/lukaslueg/railroad which makes heavy use of generics
when I add the
Net
tag to a struct like soit gives error like
do I need to configure
rnet
for use with generics?The text was updated successfully, but these errors were encountered: