The maximum number of instances 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, limit: usize)
| 258 | /// |
| 259 | /// This value defaults to 10,000. |
| 260 | pub fn instances(mut self, limit: usize) -> Self { |
| 261 | self.0.instances = limit; |
| 262 | self |
| 263 | } |
| 264 | |
| 265 | /// The maximum number of tables that can be created for a [`Store`](crate::Store). |
| 266 | /// |
no outgoing calls
no test coverage detected