rust/library
Mara Bos 44a2af32cc Remove lifetime from StaticMutex and assume 'static.
StaticMutex is only ever used with as a static (as the name already
suggests). So it doesn't have to be generic over a lifetime, but can
simply assume 'static.

This 'static lifetime guarantees the object is never moved, so this is
no longer a manually checked requirement for unsafe calls to lock().
2020-10-14 09:52:03 +02:00
..
2020-10-11 13:52:20 -04:00
2020-10-01 13:06:22 -04:00
2020-10-09 13:24:05 +02:00