Type Alias wasmbin::sections::payload::Custom

source ·
pub type Custom = CustomSection;
Expand description

Aliased Type§

enum Custom {
    Name(Lazy<Vec<NameSubSection>>),
    Producers(Lazy<Vec<ProducerField>>),
    ExternalDebugInfo(Lazy<String>),
    SourceMappingUrl(Lazy<String>),
    BuildId(Vec<u8>),
    Other(RawCustomSection),
}

Variants§

§

Name(Lazy<Vec<NameSubSection>>)

name custom section.

§

Producers(Lazy<Vec<ProducerField>>)

producers custom section.

§

ExternalDebugInfo(Lazy<String>)

external_debug_info custom section.

§

SourceMappingUrl(Lazy<String>)

sourceMappingURL custom section.

§

BuildId(Vec<u8>)

build_id custom section.

§

Other(RawCustomSection)

A custom section that is not recognized by this library.