Set the amount of memory that can be used
(mut self, memory_limit: usize)
| 776 | |
| 777 | /// Set the amount of memory that can be used |
| 778 | fn with_memory_limit(mut self, memory_limit: usize) -> Self { |
| 779 | self.memory_limit = memory_limit; |
| 780 | self |
| 781 | } |
| 782 | |
| 783 | /// Set the memory pool to be used |
| 784 | /// |
no outgoing calls
no test coverage detected