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
Bumpalo's Box is missing a Clone implementation, which is a pretty big departure from std's Box. Bringing it back would require storing a &Bump inside the Box in addition to the &mut T to be able to allocate a new value inside the same arena.
Bumpalo's
Box
is missing a Clone implementation, which is a pretty big departure fromstd
'sBox
. Bringing it back would require storing a&Bump
inside theBox
in addition to the&mut T
to be able to allocate a new value inside the same arena.That is also the way
std
is implemented:https://doc.rust-lang.org/src/alloc/boxed.rs.html#198-201
The text was updated successfully, but these errors were encountered: