Set the memory pool to be used This will override the memory_limit requested, as the memory pool includes the limit.
(mut self, memory_pool: Arc<dyn MemoryPool>)
| 785 | /// This will override the memory_limit requested, |
| 786 | /// as the memory pool includes the limit. |
| 787 | fn with_memory_pool(mut self, memory_pool: Arc<dyn MemoryPool>) -> Self { |
| 788 | self.memory_pool = Some(memory_pool); |
| 789 | self |
| 790 | } |
| 791 | |
| 792 | /// Specify the configuration to use |
| 793 | pub fn with_config(mut self, config: SessionConfig) -> Self { |
no outgoing calls
no test coverage detected