pub trait SimpleSystem {
// Required method
fn run(&mut self, context: &mut SystemContext<'_, '_, '_>);
}Expand description
System trait for the SimpleWorld/Soroban runtime.
pub trait SimpleSystem {
// Required method
fn run(&mut self, context: &mut SystemContext<'_, '_, '_>);
}System trait for the SimpleWorld/Soroban runtime.