pub trait CompiledFunctionExt {
// Required method
fn linkage_name(&self) -> String;
// Provided methods
fn object_filename(&self) -> String { ... }
fn traps_name(&self) -> String { ... }
}Expand description
Extended methods related to a compiled function.
Required Methods§
Sourcefn linkage_name(&self) -> String
fn linkage_name(&self) -> String
Return a name of the function for linkage purpose.
Provided Methods§
Sourcefn object_filename(&self) -> String
fn object_filename(&self) -> String
For serialization purpose, provide an object file name.
Sourcefn traps_name(&self) -> String
fn traps_name(&self) -> String
Symbol name holding the trap information for this function.