dusk-wasmtime-runtime 21.0.0-alpha

Runtime library support for Wasmtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(missing_docs)]

use anyhow::Result;

pub struct UnwindRegistration {}

impl UnwindRegistration {
    pub const SECTION_NAME: &'static str = ".eh_frame";

    pub unsafe fn new(
        _base_address: *const u8,
        _unwind_info: *const u8,
        _unwind_len: usize,
    ) -> Result<UnwindRegistration> {
        Ok(UnwindRegistration {})
    }
}