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
I know that I can do MyDST::try_ref_from_bytes(&box), but this gives a &MySlice. I'd like something that lets me actually get an owned version of this as a Box, is it possible?
I'd really like to avoid having to reach for self-referential types via something like ouroboros.
I figured maybe I could let v: Box<MyDST> = try_transmute!(box).unwrap(), but that didn't work.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I know that I can do
MyDST::try_ref_from_bytes(&box), but this gives a&MySlice. I'd like something that lets me actually get an owned version of this as a Box, is it possible?I'd really like to avoid having to reach for self-referential types via something like ouroboros.
I figured maybe I could
let v: Box<MyDST> = try_transmute!(box).unwrap(), but that didn't work.Beta Was this translation helpful? Give feedback.
All reactions