| 687 | /// `AliasId` identifies a unique memory cell interprocedurally. |
| 688 | #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)] |
| 689 | pub struct AliasId { |
| 690 | pub instance_id: InstanceId, |
| 691 | pub local: Local, |
| 692 | } |
| 693 | |
| 694 | /// Basically, `AliasId` and `LockGuardId` share the same info. |
| 695 | impl std::convert::From<LockGuardId> for AliasId { |
nothing calls this directly
no outgoing calls
no test coverage detected