[#B4DD95D520F87216F56AADA37E8B7D3DE1152768]
Assignment
recycled_ptr& operator=(recycled_ptr&& other) noexcept;
If `other` references an object, ownership is transferred including a reference to the recycle bin. After the move, the moved-from object is empty.
this->release()
&this->bin() == &other->bin()
Throws nothing.