Expand description
§ffi-pool
: useful object pool types for FFI code
This crate contains some useful object pool types for interfacing with C code (at the moment,
just CStringPool
.)
Structs§
- CString
Pool - A thread-safe pool of
CString
s which can be readily reused withstr
s for ease of FFI interactions. - NulError
- An error returned upon finding a nul byte in a string we are attempting to convert to a
CString
.