Sha256: 4055553d5c99c99abbc01bb8abb928ecb8b909d148b647a9977fbd444bb464a3

Contents?: true

Size: 1.34 KB

Versions: 54

Compression:

Stored size: 1.34 KB

Contents

use crate::{ComponentSection, ComponentSectionId, Encode};

/// An encoder for the start section of WebAssembly components.
///
/// # Example
///
/// ```
/// use wasm_encoder::{Component, ComponentStartSection};
///
/// let start = ComponentStartSection { function_index: 0, args: [0, 1], results: 1 };
///
/// let mut component = Component::new();
/// component.section(&start);
///
/// let bytes = component.finish();
/// ```
#[derive(Clone, Debug)]
pub struct ComponentStartSection<A> {
    /// The index to the start function.
    pub function_index: u32,
    /// The arguments to pass to the start function.
    ///
    /// An argument is an index to a value.
    pub args: A,
    /// The number of expected results for the start function.
    ///
    /// This should match the number of results for the type of
    /// the function referenced by `function_index`.
    pub results: u32,
}

impl<A> Encode for ComponentStartSection<A>
where
    A: AsRef<[u32]>,
{
    fn encode(&self, sink: &mut Vec<u8>) {
        let mut bytes = Vec::new();
        self.function_index.encode(&mut bytes);
        self.args.as_ref().encode(&mut bytes);
        self.results.encode(&mut bytes);
        bytes.encode(sink);
    }
}

impl<A> ComponentSection for ComponentStartSection<A>
where
    A: AsRef<[u32]>,
{
    fn id(&self) -> u8 {
        ComponentSectionId::Start.into()
    }
}

Version data entries

54 entries across 38 versions & 1 rubygems

Version Path
wasmtime-20.0.0 ./ext/cargo-vendor/wasm-encoder-0.202.0/src/component/start.rs
wasmtime-18.0.3 ./ext/cargo-vendor/wasm-encoder-0.41.2/src/component/start.rs
wasmtime-18.0.3 ./ext/cargo-vendor/wasm-encoder-0.201.0/src/component/start.rs
wasmtime-17.0.1 ./ext/cargo-vendor/wasm-encoder-0.38.1/src/component/start.rs
wasmtime-17.0.0 ./ext/cargo-vendor/wasm-encoder-0.38.1/src/component/start.rs
wasmtime-16.0.0 ./ext/cargo-vendor/wasm-encoder-0.38.1/src/component/start.rs
wasmtime-15.0.1 ./ext/cargo-vendor/wasm-encoder-0.38.1/src/component/start.rs
wasmtime-15.0.1 ./ext/cargo-vendor/wasm-encoder-0.36.2/src/component/start.rs
wasmtime-15.0.0 ./ext/cargo-vendor/wasm-encoder-0.38.1/src/component/start.rs
wasmtime-15.0.0 ./ext/cargo-vendor/wasm-encoder-0.36.2/src/component/start.rs
wasmtime-14.0.4 ./ext/cargo-vendor/wasm-encoder-0.36.2/src/component/start.rs
wasmtime-14.0.4 ./ext/cargo-vendor/wasm-encoder-0.35.0/src/component/start.rs
wasmtime-14.0.3 ./ext/cargo-vendor/wasm-encoder-0.35.0/src/component/start.rs
wasmtime-14.0.1 ./ext/cargo-vendor/wasm-encoder-0.35.0/src/component/start.rs
wasmtime-14.0.0 ./ext/cargo-vendor/wasm-encoder-0.35.0/src/component/start.rs
wasmtime-13.0.0 ./ext/cargo-vendor/wasm-encoder-0.33.1/src/component/start.rs
wasmtime-13.0.0 ./ext/cargo-vendor/wasm-encoder-0.32.0/src/component/start.rs
wasmtime-12.0.1 ./ext/cargo-vendor/wasm-encoder-0.31.1/src/component/start.rs
wasmtime-12.0.0 ./ext/cargo-vendor/wasm-encoder-0.31.1/src/component/start.rs
wasmtime-11.0.0 ./ext/cargo-vendor/wasm-encoder-0.29.0/src/component/start.rs