pub trait JsonCScannerExt<'text>: Sealed {
    // Required methods
    fn scan_jsonc_line_comment(&mut self) -> ScannerResult<'text, &'text str>;
    fn scan_jsonc_block_comment(&mut self) -> ScannerResult<'text, &'text str>;
}
Expand description

Scanner extension for scanning JSON with Comments tokens.

Required Methods§

source

fn scan_jsonc_line_comment(&mut self) -> ScannerResult<'text, &'text str>

source

fn scan_jsonc_block_comment(&mut self) -> ScannerResult<'text, &'text str>

Implementors§

source§

impl<'text> JsonCScannerExt<'text> for Scanner<'text>