Amanieu / parking_lot

Compact and efficient synchronization primitives for Rust. Also provides an API for creating custom synchronization primitives.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Doesn't require what glue?

dpc opened this issue · comments

Does not require any drop glue when dropped.

What glue? What does it mean? Thank you.

commented

Drop glue is what rustc internally calls the function that runs the Drop impl for a value and all fields of this value recursively. It is exposed as core::mem::drop_in_place.