pub trait Schema: Send + Sync {
// Required method
fn parse(&self, value: &Value, ctx: &Ctx) -> Result<Value, ValidationError>;
}pub trait Schema: Send + Sync {
// Required method
fn parse(&self, value: &Value, ctx: &Ctx) -> Result<Value, ValidationError>;
}