(vm: &VirtualMachine, obj: &'a PyObject)
| 36 | |
| 37 | impl<'a> TryFromBorrowedObject<'a> for PyBytesInner { |
| 38 | fn try_from_borrowed_object(vm: &VirtualMachine, obj: &'a PyObject) -> PyResult<Self> { |
| 39 | bytes_from_object(vm, obj).map(Self::from) |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | #[derive(FromArgs)] |
nothing calls this directly
no test coverage detected