Struct wasmtime_environ::FunctionInfo
source · pub struct FunctionInfo {
pub start_srcloc: FilePos,
pub stack_maps: Vec<StackMapInformation>,
pub start: u64,
pub length: u32,
}
Expand description
Information about a function, such as trap information, address map, and stack maps.
Fields§
§start_srcloc: FilePos
§stack_maps: Vec<StackMapInformation>
§start: u64
Offset in the text section of where this function starts.
length: u32
The size of the compiled function, in bytes.
Trait Implementations§
source§impl Default for FunctionInfo
impl Default for FunctionInfo
source§fn default() -> FunctionInfo
fn default() -> FunctionInfo
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for FunctionInfo
impl<'de> Deserialize<'de> for FunctionInfo
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more