Sha256: 90662bb2af6f9e2319f617274651223e272c5886c12d20c7e04f771dd2af8c00

Contents?: true

Size: 1.03 KB

Versions: 4

Compression:

Stored size: 1.03 KB

Contents

use crate::{encoding_size, Encode, Section, SectionId};
use alloc::vec::Vec;

/// An encoder for the start section of WebAssembly modules.
///
/// # Example
///
/// Note: this doesn't actually define the function at index 0, its type, or its
/// code body, so the resulting Wasm module will be invalid. See `TypeSection`,
/// `FunctionSection`, and `CodeSection` for details on how to generate those
/// things.
///
/// ```
/// use wasm_encoder::{Module, StartSection};
///
/// let start = StartSection { function_index: 0 };
///
/// let mut module = Module::new();
/// module.section(&start);
///
/// let wasm_bytes = module.finish();
/// ```
#[derive(Clone, Copy, Debug)]
pub struct StartSection {
    /// The index of the start function.
    pub function_index: u32,
}

impl Encode for StartSection {
    fn encode(&self, sink: &mut Vec<u8>) {
        encoding_size(self.function_index).encode(sink);
        self.function_index.encode(sink);
    }
}

impl Section for StartSection {
    fn id(&self) -> u8 {
        SectionId::Start.into()
    }
}

Version data entries

4 entries across 3 versions & 1 rubygems

Version Path
wasmtime-30.0.2 ./ext/cargo-vendor/wasm-encoder-0.224.1/src/core/start.rs
wasmtime-30.0.2 ./ext/cargo-vendor/wasm-encoder-0.226.0/src/core/start.rs
wasmtime-29.0.0 ./ext/cargo-vendor/wasm-encoder-0.224.0/src/core/start.rs
wasmtime-28.0.0 ./ext/cargo-vendor/wasm-encoder-0.223.0/src/core/start.rs