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
Yeah, I think that should be possible with some work. I think (haven't checked) that the reason why it doesn't work today is because we ultimately store an Option. Using MaybeUninit and a bool flag might help here!
Now I start to think it might not be possible. The problem is that Lazy has another generic argument F which should be a FnOnce type. So the sized Lazy type could be:
Lazy<[i32; 3], impl FnOnce() -> [i32; 3]>
And the unsized Lazy type would be
Lazy<[i32], impl FnOnce() -> [i32]>
I have not idea how the conversion would work. If it is not possible for Lazy, how about OnceCell?
Currently, the following code does not compile:
Is it possible for
Lazy
to support unsized coercions like types likeRefCell
? For example, withRefCell
, I can do this:The text was updated successfully, but these errors were encountered: