mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-22 13:11:32 +00:00
Add 'fault' placeholder for Windows.
This commit is contained in:
@ -74,7 +74,10 @@ pub struct BreakpointInfo<'a> {
|
|||||||
|
|
||||||
/// Information for a breakpoint
|
/// Information for a breakpoint
|
||||||
#[cfg(not(unix))]
|
#[cfg(not(unix))]
|
||||||
pub struct BreakpointInfo {}
|
pub struct BreakpointInfo {
|
||||||
|
/// Fault placeholder.
|
||||||
|
pub fault: Option<()>,
|
||||||
|
}
|
||||||
|
|
||||||
/// A trait that represents the functions needed to be implemented to generate code for a module.
|
/// A trait that represents the functions needed to be implemented to generate code for a module.
|
||||||
pub trait ModuleCodeGenerator<FCG: FunctionCodeGenerator<E>, RM: RunnableModule, E: Debug> {
|
pub trait ModuleCodeGenerator<FCG: FunctionCodeGenerator<E>, RM: RunnableModule, E: Debug> {
|
||||||
|
Reference in New Issue
Block a user