| 17 | /// Uniquely identify a LockGuard in a crate. |
| 18 | #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)] |
| 19 | pub struct LockGuardId { |
| 20 | pub instance_id: InstanceId, |
| 21 | pub local: Local, |
| 22 | } |
| 23 | |
| 24 | impl LockGuardId { |
| 25 | pub fn new(instance_id: InstanceId, local: Local) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected