pub trait PartialJsonParser: Send + Sync {
// Required methods
fn parse(&self, input: &str) -> ParserResult<(Value, usize)>;
fn is_complete(&self, input: &str) -> bool;
fn max_depth(&self) -> usize;
}Expand description
Trait for partial JSON parsing
Required Methods§
Sourcefn is_complete(&self, input: &str) -> bool
fn is_complete(&self, input: &str) -> bool
Check if JSON is complete