Set the maximum size, in units of pages, for the memory type being built. The default maximum is `None`.
(&mut self, maximum: Option<u64>)
| 3287 | /// |
| 3288 | /// The default maximum is `None`. |
| 3289 | pub fn max(&mut self, maximum: Option<u64>) -> &mut Self { |
| 3290 | self.ty.limits.max = maximum; |
| 3291 | self |
| 3292 | } |
| 3293 | |
| 3294 | /// Set whether this is a 64-bit memory or not. |
| 3295 | /// |
no outgoing calls
no test coverage detected