Compare by structural equality.
(self, other: Any)
| 229 | return self.hash_i64 & 0xFFFFFFFFFFFFFFFF |
| 230 | |
| 231 | def __eq__(self, other: Any) -> bool: |
| 232 | """Compare by structural equality.""" |
| 233 | return isinstance(other, StructuralKey) and _ffi_api.StructuralKeyEqual(self, other) |
nothing calls this directly
no outgoing calls
no test coverage detected