dive_deco/common/
sim.rs

1pub trait Sim {
2    fn fork(&self) -> Self;
3    fn is_sim(&self) -> bool;
4}