In Apache2 modules allocating from the heap via any malloc implementation is forbidden. Instead modules are expected to allocate via the supplied APR memory pools.
To allow the std Rust containers to be used the APR memory pool must be adapted to fit one of the allocator traits and it must be set as the default global allocator.
In Apache2 modules allocating from the heap via any malloc implementation is forbidden. Instead modules are expected to allocate via the supplied APR memory pools.
To allow the std Rust containers to be used the APR memory pool must be adapted to fit one of the allocator traits and it must be set as the default global allocator.