An error allocated by python.
| 30 | |
| 31 | |
| 32 | class FfiError(Structure): |
| 33 | """An error allocated by python.""" |
| 34 | _fields_ = [ |
| 35 | ("code", c_int32), |
| 36 | ("message", c_char_p), |
| 37 | ] |
| 38 | |
| 39 | |
| 40 | def _decode_bytes(arg: Optional[Union[str, bytes, FfiByteBuffer]]) -> bytes: |
no outgoing calls
no test coverage detected