Returns whether this is a shared memory or not. Note that shared memories are part of the threads proposal for WebAssembly which is not standardized yet.
(&self)
| 3460 | /// Note that shared memories are part of the threads proposal for |
| 3461 | /// WebAssembly which is not standardized yet. |
| 3462 | pub fn is_shared(&self) -> bool { |
| 3463 | self.ty.shared |
| 3464 | } |
| 3465 | |
| 3466 | /// Returns minimum number of WebAssembly pages this memory must have. |
| 3467 | /// |
no outgoing calls
no test coverage detected