(self, ptr: Any, *, owned: bool = True)
| 63 | __slots__ = ("_ptr", "_owned") |
| 64 | |
| 65 | def __init__(self, ptr: Any, *, owned: bool = True) -> None: |
| 66 | self._ptr = ptr |
| 67 | self._owned = owned |
| 68 | |
| 69 | @classmethod |
| 70 | def borrow(cls, ptr: Any) -> LeanObj: |
nothing calls this directly
no outgoing calls
no test coverage detected