The maximum number of tables that can be created for a [`Store`](crate::Store). Module instantiation will fail if this limit is exceeded. This value defaults to 10,000.
(mut self, tables: usize)
| 268 | /// |
| 269 | /// This value defaults to 10,000. |
| 270 | pub fn tables(mut self, tables: usize) -> Self { |
| 271 | self.0.tables = tables; |
| 272 | self |
| 273 | } |
| 274 | |
| 275 | /// The maximum number of linear memories that can be created for a [`Store`](crate::Store). |
| 276 | /// |
no outgoing calls
no test coverage detected