| 352 | explicit BufferReadOnly(uint8_t value) : value(value) {} |
| 353 | |
| 354 | py::buffer_info get_buffer_info() { return py::buffer_info(&value, 1); } |
| 355 | }; |
| 356 | py::class_<BufferReadOnly>(m, "BufferReadOnly", py::buffer_protocol()) |
| 357 | .def(py::init<uint8_t>()) |
nothing calls this directly
no test coverage detected