wasmer 7.1.0

High-performance WebAssembly runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
//! Defines the [`BackendModule`] data type and various useful traits and data types to interact with
//! a concrete module from a backend.

use std::{fs, path::Path};

use bytes::Bytes;
use thiserror::Error;
#[cfg(feature = "wat")]
use wasmer_types::WasmError;
use wasmer_types::{
    CompilationProgressCallback, CompileError, DeserializeError, ExportType, ExportsIterator,
    ImportType, ImportsIterator, ModuleInfo, SerializeError,
};

use crate::{
    AsEngineRef,
    macros::backend::{gen_rt_ty, match_rt},
    utils::IntoBytes,
};

/// A WebAssembly Module contains stateless WebAssembly
/// code that has already been compiled and can be instantiated
/// multiple times.
///
/// ## Cloning a module
///
/// Cloning a module is cheap: it does a shallow copy of the compiled
/// contents rather than a deep copy.
gen_rt_ty!(Module
    @cfg feature = "artifact-size" => derive(loupe::MemoryUsage)
    @derives Clone, PartialEq, Eq, derive_more::From
);

impl BackendModule {
    #[inline]
    pub fn new(engine: &impl AsEngineRef, bytes: impl AsRef<[u8]>) -> Result<Self, CompileError> {
        #[cfg(feature = "wat")]
        let bytes = wat::parse_bytes(bytes.as_ref()).map_err(|e| {
            CompileError::Wasm(WasmError::Generic(format!(
                "Error when converting wat: {e}",
            )))
        })?;
        Self::from_binary(engine, bytes.as_ref())
    }

    #[inline]
    pub fn new_with_progress(
        engine: &impl AsEngineRef,
        bytes: impl AsRef<[u8]>,
        callback: CompilationProgressCallback,
    ) -> Result<Self, CompileError> {
        #[cfg(feature = "wat")]
        let bytes = wat::parse_bytes(bytes.as_ref()).map_err(|e| {
            CompileError::Wasm(WasmError::Generic(format!(
                "Error when converting wat: {e}",
            )))
        })?;

        #[cfg(feature = "sys")]
        return crate::backend::sys::entities::module::Module::from_binary_with_progress(
            engine,
            bytes.as_ref(),
            callback,
        )
        .map(Self::Sys);
        #[cfg(not(feature = "sys"))]
        return Self::from_binary(engine, bytes.as_ref());
    }

    /// Creates a new WebAssembly module from a file path.
    #[inline]
    pub fn from_file(
        engine: &impl AsEngineRef,
        file: impl AsRef<Path>,
    ) -> Result<Self, super::IoCompileError> {
        let file_ref = file.as_ref();
        let canonical = file_ref.canonicalize()?;
        let wasm_bytes = std::fs::read(file_ref)?;
        let mut module = Self::new(engine, wasm_bytes)?;
        // Set the module name to the absolute path of the filename.
        // This is useful for debugging the stack traces.
        let filename = canonical.as_path().to_str().unwrap();
        module.set_name(filename);
        Ok(module)
    }

    /// Creates a new WebAssembly module from a Wasm binary.
    ///
    /// Opposed to [`Self::new`], this function is not compatible with
    /// the WebAssembly text format (if the "wat" feature is enabled for
    /// this crate).
    #[inline]
    pub fn from_binary(engine: &impl AsEngineRef, binary: &[u8]) -> Result<Self, CompileError> {
        match engine.as_engine_ref().inner.be {
            #[cfg(feature = "sys")]
            crate::BackendEngine::Sys(_) => Ok(Self::Sys(
                crate::backend::sys::entities::module::Module::from_binary(engine, binary)?,
            )),

            #[cfg(feature = "wamr")]
            crate::BackendEngine::Wamr(_) => Ok(Self::Wamr(
                crate::backend::wamr::entities::module::Module::from_binary(engine, binary)?,
            )),

            #[cfg(feature = "wasmi")]
            crate::BackendEngine::Wasmi(_) => Ok(Self::Wasmi(
                crate::backend::wasmi::entities::module::Module::from_binary(engine, binary)?,
            )),

            #[cfg(feature = "v8")]
            crate::BackendEngine::V8(_) => Ok(Self::V8(
                crate::backend::v8::entities::module::Module::from_binary(engine, binary)?,
            )),

            #[cfg(feature = "js")]
            crate::BackendEngine::Js(_) => Ok(Self::Js(
                crate::backend::js::entities::module::Module::from_binary(engine, binary)?,
            )),

            #[cfg(feature = "jsc")]
            crate::BackendEngine::Jsc(_) => Ok(Self::Jsc(
                crate::backend::jsc::entities::module::Module::from_binary(engine, binary)?,
            )),
        }
    }

    /// Creates a new WebAssembly module from a Wasm binary,
    /// skipping any kind of validation on the WebAssembly file.
    ///
    /// # Safety
    ///
    /// This can speed up compilation time a bit, but it should be only used
    /// in environments where the WebAssembly modules are trusted and validated
    /// beforehand.
    #[inline]
    pub unsafe fn from_binary_unchecked(
        engine: &impl AsEngineRef,
        binary: &[u8],
    ) -> Result<Self, CompileError> {
        match engine.as_engine_ref().inner.be {
            #[cfg(feature = "sys")]
            crate::BackendEngine::Sys(_) => {
                let module = unsafe {
                    crate::backend::sys::entities::module::Module::from_binary_unchecked(
                        engine, binary,
                    )?
                };
                Ok(Self::Sys(module))
            }

            #[cfg(feature = "wamr")]
            crate::BackendEngine::Wamr(_) => {
                let module = unsafe {
                    crate::backend::wamr::entities::module::Module::from_binary_unchecked(
                        engine, binary,
                    )?
                };
                Ok(Self::Wamr(module))
            }

            #[cfg(feature = "wasmi")]
            crate::BackendEngine::Wasmi(_) => {
                let module = unsafe {
                    crate::backend::wasmi::entities::module::Module::from_binary_unchecked(
                        engine, binary,
                    )?
                };
                Ok(Self::Wasmi(module))
            }

            #[cfg(feature = "v8")]
            crate::BackendEngine::V8(_) => {
                let module = unsafe {
                    crate::backend::v8::entities::module::Module::from_binary_unchecked(
                        engine, binary,
                    )?
                };
                Ok(Self::V8(module))
            }
            #[cfg(feature = "js")]
            crate::BackendEngine::Js(_) => {
                let module = unsafe {
                    crate::backend::js::entities::module::Module::from_binary_unchecked(
                        engine, binary,
                    )?
                };
                Ok(Self::Js(module))
            }
            #[cfg(feature = "jsc")]
            crate::BackendEngine::Jsc(_) => {
                let module = unsafe {
                    crate::backend::jsc::entities::module::Module::from_binary_unchecked(
                        engine, binary,
                    )?
                };
                Ok(Self::Jsc(module))
            }
        }
    }

    /// Validates a new WebAssembly Module given the configuration
    /// in the Store.
    ///
    /// This validation is normally pretty fast and checks the enabled
    /// WebAssembly features in the Store Engine to assure deterministic
    /// validation of the Module.
    #[inline]
    pub fn validate(engine: &impl AsEngineRef, binary: &[u8]) -> Result<(), CompileError> {
        match engine.as_engine_ref().inner.be {
            #[cfg(feature = "sys")]
            crate::BackendEngine::Sys(_) => {
                crate::backend::sys::entities::module::Module::validate(engine, binary)?
            }
            #[cfg(feature = "wamr")]
            crate::BackendEngine::Wamr(_) => {
                crate::backend::wamr::entities::module::Module::validate(engine, binary)?
            }

            #[cfg(feature = "wasmi")]
            crate::BackendEngine::Wasmi(_) => {
                crate::backend::wasmi::entities::module::Module::validate(engine, binary)?
            }
            #[cfg(feature = "v8")]
            crate::BackendEngine::V8(_) => {
                crate::backend::v8::entities::module::Module::validate(engine, binary)?
            }
            #[cfg(feature = "js")]
            crate::BackendEngine::Js(_) => {
                crate::backend::js::entities::module::Module::validate(engine, binary)?
            }
            #[cfg(feature = "jsc")]
            crate::BackendEngine::Jsc(_) => {
                crate::backend::jsc::entities::module::Module::validate(engine, binary)?
            }
        }
        Ok(())
    }

    /// Serializes a module into a binary representation that the `Engine`
    /// can later process via [`Self::deserialize`].
    ///
    /// # Important
    ///
    /// This function will return a custom binary format that will be different than
    /// the `wasm` binary format, but faster to load in Native hosts.
    ///
    /// # Usage
    ///
    /// ```ignore
    /// # use wasmer::*;
    /// # fn main() -> anyhow::Result<()> {
    /// # let mut store = Store::default();
    /// # let module = Module::from_file(&store, "path/to/foo.wasm")?;
    /// let serialized = module.serialize()?;
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn serialize(&self) -> Result<Bytes, SerializeError> {
        match_rt!(on self => s {
            s.serialize()
        })
    }

    /// Serializes a module into a file that the `Engine`
    /// can later process via [`Self::deserialize_from_file`].
    ///
    /// # Usage
    ///
    /// ```ignore
    /// # use wasmer::*;
    /// # fn main() -> anyhow::Result<()> {
    /// # let mut store = Store::default();
    /// # let module = Module::from_file(&store, "path/to/foo.wasm")?;
    /// module.serialize_to_file("path/to/foo.so")?;
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn serialize_to_file(&self, path: impl AsRef<Path>) -> Result<(), SerializeError> {
        let serialized = self.serialize()?;
        fs::write(path, serialized)?;
        Ok(())
    }

    /// Deserializes a serialized module binary into a `Module`.
    ///
    /// Note: You should usually prefer the safer [`Self::deserialize`].
    ///
    /// # Important
    ///
    /// This function only accepts a custom binary format, which will be different
    /// than the `wasm` binary format and may change among Wasmer versions.
    /// (it should be the result of the serialization of a Module via the
    /// `Module::serialize` method.).
    ///
    /// # Safety
    ///
    /// This function is inherently **unsafe** as the provided bytes:
    /// 1. Are going to be deserialized directly into Rust objects.
    /// 2. Contains the function assembly bodies and, if intercepted,
    ///    a malicious actor could inject code into executable
    ///    memory.
    ///
    /// And as such, the `deserialize_unchecked` method is unsafe.
    ///
    /// # Usage
    ///
    /// ```ignore
    /// # use wasmer::*;
    /// # fn main() -> anyhow::Result<()> {
    /// # let mut store = Store::default();
    /// let module = Module::deserialize_unchecked(&store, serialized_data)?;
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub unsafe fn deserialize_unchecked(
        engine: &impl AsEngineRef,
        bytes: impl IntoBytes,
    ) -> Result<Self, DeserializeError> {
        match engine.as_engine_ref().inner.be {
            #[cfg(feature = "sys")]
            crate::BackendEngine::Sys(_) => {
                let module = unsafe {
                    crate::backend::sys::entities::module::Module::deserialize_unchecked(
                        engine, bytes,
                    )?
                };
                Ok(Self::Sys(module))
            }
            #[cfg(feature = "wamr")]
            crate::BackendEngine::Wamr(_) => {
                let module = unsafe {
                    crate::backend::wamr::entities::module::Module::deserialize_unchecked(
                        engine, bytes,
                    )?
                };
                Ok(Self::Wamr(module))
            }

            #[cfg(feature = "wasmi")]
            crate::BackendEngine::Wasmi(_) => {
                let module = unsafe {
                    crate::backend::wasmi::entities::module::Module::deserialize_unchecked(
                        engine, bytes,
                    )?
                };
                Ok(Self::Wasmi(module))
            }
            #[cfg(feature = "v8")]
            crate::BackendEngine::V8(_) => {
                let module = unsafe {
                    crate::backend::v8::entities::module::Module::deserialize_unchecked(
                        engine, bytes,
                    )?
                };
                Ok(Self::V8(module))
            }
            #[cfg(feature = "js")]
            crate::BackendEngine::Js(_) => {
                let module = unsafe {
                    crate::backend::js::entities::module::Module::deserialize_unchecked(
                        engine, bytes,
                    )?
                };
                Ok(Self::Js(module))
            }
            #[cfg(feature = "jsc")]
            crate::BackendEngine::Jsc(_) => {
                let module = unsafe {
                    crate::backend::jsc::entities::module::Module::deserialize_unchecked(
                        engine, bytes,
                    )?
                };
                Ok(Self::Jsc(module))
            }
        }
    }

    /// Deserializes a serialized Module binary into a `Module`.
    ///
    /// # Important
    ///
    /// This function only accepts a custom binary format, which will be different
    /// than the `wasm` binary format and may change among Wasmer versions.
    /// (it should be the result of the serialization of a Module via the
    /// [`Self::serialize`] method.).
    ///
    /// # Usage
    ///
    /// ```ignore
    /// # use wasmer::*;
    /// # fn main() -> anyhow::Result<()> {
    /// # let mut store = Store::default();
    /// let module = Module::deserialize(&store, serialized_data)?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Safety
    /// This function is inherently **unsafe**, because it loads executable code
    /// into memory.
    /// The loaded bytes must be trusted to contain a valid artifact previously
    /// built with [`Self::serialize`].
    #[inline]
    pub unsafe fn deserialize(
        engine: &impl AsEngineRef,
        bytes: impl IntoBytes,
    ) -> Result<Self, DeserializeError> {
        match engine.as_engine_ref().inner.be {
            #[cfg(feature = "sys")]
            crate::BackendEngine::Sys(_) => {
                let module = unsafe {
                    crate::backend::sys::entities::module::Module::deserialize(engine, bytes)?
                };
                Ok(Self::Sys(module))
            }
            #[cfg(feature = "wamr")]
            crate::BackendEngine::Wamr(_) => {
                let module = unsafe {
                    crate::backend::wamr::entities::module::Module::deserialize(engine, bytes)?
                };
                Ok(Self::Wamr(module))
            }

            #[cfg(feature = "wasmi")]
            crate::BackendEngine::Wasmi(_) => {
                let module = unsafe {
                    crate::backend::wasmi::entities::module::Module::deserialize(engine, bytes)?
                };
                Ok(Self::Wasmi(module))
            }
            #[cfg(feature = "v8")]
            crate::BackendEngine::V8(_) => {
                let module = unsafe {
                    crate::backend::v8::entities::module::Module::deserialize(engine, bytes)?
                };
                Ok(Self::V8(module))
            }
            #[cfg(feature = "js")]
            crate::BackendEngine::Js(_) => {
                let module = unsafe {
                    crate::backend::js::entities::module::Module::deserialize(engine, bytes)?
                };
                Ok(Self::Js(module))
            }
            #[cfg(feature = "jsc")]
            crate::BackendEngine::Jsc(_) => {
                let module = unsafe {
                    crate::backend::jsc::entities::module::Module::deserialize(engine, bytes)?
                };
                Ok(Self::Jsc(module))
            }
        }
    }

    /// Deserializes a serialized Module located in a `Path` into a `Module`.
    /// > Note: the module has to be serialized before with the `serialize` method.
    ///
    /// # Usage
    ///
    /// ```ignore
    /// # use wasmer::*;
    /// # fn main() -> anyhow::Result<()> {
    /// # let mut store = Store::default();
    /// let module = Module::deserialize_from_file(&store, path)?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Safety
    ///
    /// See [`Self::deserialize`].
    #[inline]
    pub unsafe fn deserialize_from_file(
        engine: &impl AsEngineRef,
        path: impl AsRef<Path>,
    ) -> Result<Self, DeserializeError> {
        match engine.as_engine_ref().inner.be {
            #[cfg(feature = "sys")]
            crate::BackendEngine::Sys(_) => {
                let module = unsafe {
                    crate::backend::sys::entities::module::Module::deserialize_from_file(
                        engine, path,
                    )?
                };
                Ok(Self::Sys(module))
            }
            #[cfg(feature = "wamr")]
            crate::BackendEngine::Wamr(_) => {
                let module = unsafe {
                    crate::backend::wamr::entities::module::Module::deserialize_from_file(
                        engine, path,
                    )?
                };
                Ok(Self::Wamr(module))
            }

            #[cfg(feature = "wasmi")]
            crate::BackendEngine::Wasmi(_) => {
                let module = unsafe {
                    crate::backend::wasmi::entities::module::Module::deserialize_from_file(
                        engine, path,
                    )?
                };
                Ok(Self::Wasmi(module))
            }
            #[cfg(feature = "v8")]
            crate::BackendEngine::V8(_) => {
                let module = unsafe {
                    crate::backend::v8::entities::module::Module::deserialize_from_file(
                        engine, path,
                    )?
                };
                Ok(Self::V8(module))
            }
            #[cfg(feature = "js")]
            crate::BackendEngine::Js(_) => {
                let module = unsafe {
                    crate::backend::js::entities::module::Module::deserialize_from_file(
                        engine, path,
                    )?
                };
                Ok(Self::Js(module))
            }
            #[cfg(feature = "jsc")]
            crate::BackendEngine::Jsc(_) => {
                let module = unsafe {
                    crate::backend::jsc::entities::module::Module::deserialize_from_file(
                        engine, path,
                    )?
                };
                Ok(Self::Jsc(module))
            }
        }
    }

    /// Deserializes a serialized Module located in a `Path` into a `Module`.
    /// > Note: the module has to be serialized before with the `serialize` method.
    ///
    /// You should usually prefer the safer [`Self::deserialize_from_file`].
    ///
    /// # Safety
    ///
    /// Please check [`Self::deserialize_unchecked`].
    ///
    /// # Usage
    ///
    /// ```ignore
    /// # use wasmer::*;
    /// # fn main() -> anyhow::Result<()> {
    /// # let mut store = Store::default();
    /// let module = Module::deserialize_from_file_unchecked(&store, path)?;
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub unsafe fn deserialize_from_file_unchecked(
        engine: &impl AsEngineRef,
        path: impl AsRef<Path>,
    ) -> Result<Self, DeserializeError> {
        match engine.as_engine_ref().inner.be {
            #[cfg(feature = "sys")]
            crate::BackendEngine::Sys(_) => {
                let module = unsafe {
                    crate::backend::sys::entities::module::Module::deserialize_from_file_unchecked(
                        engine, path,
                    )?
                };
                Ok(Self::Sys(module))
            }
            #[cfg(feature = "wamr")]
            crate::BackendEngine::Wamr(_) => {
                let module = unsafe {
                    crate::backend::wamr::entities::module::Module::deserialize_from_file_unchecked(
                        engine, path,
                    )?
                };
                Ok(Self::Wamr(module))
            }

            #[cfg(feature = "wasmi")]
            crate::BackendEngine::Wasmi(_) => {
                let module = unsafe {
                    crate::backend::wasmi::entities::module::Module::deserialize_from_file_unchecked(
                        engine, path,
                    )?
                };
                Ok(Self::Wasmi(module))
            }
            #[cfg(feature = "v8")]
            crate::BackendEngine::V8(_) => {
                let module = unsafe {
                    crate::backend::v8::entities::module::Module::deserialize_from_file_unchecked(
                        engine, path,
                    )?
                };
                Ok(Self::V8(module))
            }
            #[cfg(feature = "js")]
            crate::BackendEngine::Js(_) => {
                let module = unsafe {
                    crate::backend::js::entities::module::Module::deserialize_from_file_unchecked(
                        engine, path,
                    )?
                };
                Ok(Self::Js(module))
            }
            #[cfg(feature = "jsc")]
            crate::BackendEngine::Jsc(_) => {
                let module = unsafe {
                    crate::backend::jsc::entities::module::Module::deserialize_from_file_unchecked(
                        engine, path,
                    )?
                };
                Ok(Self::Jsc(module))
            }
        }
    }

    /// Returns the name of the current module.
    ///
    /// This name is normally set in the WebAssembly bytecode by some
    /// compilers, but can be also overwritten using the [`Self::set_name`] method.
    ///
    /// # Example
    ///
    /// ```
    /// # use wasmer::*;
    /// # fn main() -> anyhow::Result<()> {
    /// # let mut store = Store::default();
    /// let wat = "(module $moduleName)";
    /// let module = Module::new(&store, wat)?;
    /// assert_eq!(module.name(), Some("moduleName"));
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn name(&self) -> Option<&str> {
        match_rt!(on self => s {
            s.name()
        })
    }

    /// Sets the name of the current module.
    /// This is normally useful for stacktraces and debugging.
    ///
    /// It will return `true` if the module name was changed successfully,
    /// and return `false` otherwise (in case the module is cloned or
    /// already instantiated).
    ///
    /// # Example
    ///
    /// ```
    /// # use wasmer::*;
    /// # fn main() -> anyhow::Result<()> {
    /// # let mut store = Store::default();
    /// let wat = "(module)";
    /// let mut module = Module::new(&store, wat)?;
    /// assert_eq!(module.name(), None);
    /// module.set_name("foo");
    /// assert_eq!(module.name(), Some("foo"));
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn set_name(&mut self, name: &str) -> bool {
        match_rt!(on self => s {
            s.set_name(name)
        })
    }

    /// Returns an iterator over the imported types in the Module.
    ///
    /// The order of the imports is guaranteed to be the same as in the
    /// WebAssembly bytecode.
    ///
    /// # Example
    ///
    /// ```
    /// # use wasmer::*;
    /// # fn main() -> anyhow::Result<()> {
    /// # let mut store = Store::default();
    /// let wat = r#"(module
    ///     (import "host" "func1" (func))
    ///     (import "host" "func2" (func))
    /// )"#;
    /// let module = Module::new(&store, wat)?;
    /// for import in module.imports() {
    ///     assert_eq!(import.module(), "host");
    ///     assert!(import.name().contains("func"));
    ///     import.ty();
    /// }
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn imports(&self) -> ImportsIterator<Box<dyn Iterator<Item = ImportType> + '_>> {
        match_rt!(on self => s {
            s.imports()
        })
    }

    /// Returns an iterator over the exported types in the Module.
    ///
    /// The order of the exports is guaranteed to be the same as in the
    /// WebAssembly bytecode.
    ///
    /// # Example
    ///
    /// ```
    /// # use wasmer::*;
    /// # fn main() -> anyhow::Result<()> {
    /// # let mut store = Store::default();
    /// let wat = r#"(module
    ///     (func (export "namedfunc"))
    ///     (memory (export "namedmemory") 1)
    /// )"#;
    /// let module = Module::new(&store, wat)?;
    /// for export_ in module.exports() {
    ///     assert!(export_.name().contains("named"));
    ///     export_.ty();
    /// }
    /// # Ok(())
    /// # }
    /// ```
    #[inline]
    pub fn exports(&self) -> ExportsIterator<Box<dyn Iterator<Item = ExportType> + '_>> {
        match_rt!(on self => s {
            s.exports()
        })
    }

    /// Get the custom sections of the module given a `name`.
    ///
    /// # Important
    ///
    /// Following the WebAssembly spec, one name can have multiple
    /// custom sections. That's why an iterator (rather than one element)
    /// is returned.
    #[inline]
    pub fn custom_sections<'a>(&'a self, name: &'a str) -> impl Iterator<Item = Box<[u8]>> + 'a {
        match_rt!(on self => s {
            s.custom_sections(name)
        })
    }

    /// The ABI of the [`ModuleInfo`] is very unstable, we refactor it very often.
    /// This function is public because in some cases it can be useful to get some
    /// extra information from the module.
    ///
    /// However, the usage is highly discouraged.
    #[doc(hidden)]
    #[inline]
    pub fn info(&self) -> &ModuleInfo {
        match_rt!(on self => s {
            s.info()
        })
    }
}

impl std::fmt::Debug for BackendModule {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("BackendModule")
            .field("name", &self.name())
            .finish()
    }
}