unsafe fn move_to_new_list<T>(
from: &mut LinkedList<ListEntry<T>>,
to: &mut LinkedList<ListEntry<T>>,
)Expand description
ยงSafety
The mutex for the entries must be held, and the target list must be such
that setting my_list to Neither is ok.