Struct wasmtime_environ::FunctionInfo
source · pub struct FunctionInfo {
pub start_srcloc: FilePos,
pub stack_maps: Vec<StackMapInformation>,
pub start: u64,
pub length: u32,
pub alignment: 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.
alignment: u32
The alignment requirements of this 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
Auto Trait Implementations§
impl RefUnwindSafe for FunctionInfo
impl Send for FunctionInfo
impl Sync for FunctionInfo
impl Unpin for FunctionInfo
impl UnwindSafe for FunctionInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more