(self)
| 1530 | } |
| 1531 | |
| 1532 | fn try_into_readonly(self) -> Result<PyReadonlyArray<'py, T, D>, BorrowError> |
| 1533 | where |
| 1534 | T: Element, |
| 1535 | D: Dimension, |
| 1536 | { |
| 1537 | PyReadonlyArray::try_new(self) |
| 1538 | } |
| 1539 | |
| 1540 | fn try_readonly(&self) -> Result<PyReadonlyArray<'py, T, D>, BorrowError> |
| 1541 | where |
no outgoing calls
no test coverage detected