handle_section

Function handle_section 

Source
fn handle_section<'wasm, T, F, E>(
    wasm: &mut WasmReader<'wasm>,
    header: &mut Option<SectionHeader>,
    section_ty: SectionTy,
    handler: F,
) -> Result<Option<T>, E>
where T: 'wasm, F: FnOnce(&mut WasmReader<'wasm>, SectionHeader) -> Result<T, E>, E: From<DecodingError>,