pub trait Namespace: UnwindSafe + RefUnwindSafe {
// Required methods
fn parse_type(&self) -> ParseType;
fn run_test(&self, test: Test) -> Result<Value, String>;
}
pub trait Namespace: UnwindSafe + RefUnwindSafe {
// Required methods
fn parse_type(&self) -> ParseType;
fn run_test(&self, test: Test) -> Result<Value, String>;
}