pub trait StateHandler:
Send
+ Sync
+ Debug {
// Required methods
fn can_handle(&self, state: &ParseState) -> bool;
fn handle(&self, state: &mut ParseState) -> Result<bool, FuzzyJsonError>;
}pub trait StateHandler:
Send
+ Sync
+ Debug {
// Required methods
fn can_handle(&self, state: &ParseState) -> bool;
fn handle(&self, state: &mut ParseState) -> Result<bool, FuzzyJsonError>;
}