Skip to main content

JsonScan

Trait JsonScan 

Source
pub trait JsonScan: Sized {
    // Required method
    fn scan_json<'a, I>(chunks: I) -> Result<Self>
       where I: IntoIterator<Item = &'a [u8]>;
}

Required Methods§

Source

fn scan_json<'a, I>(chunks: I) -> Result<Self>
where I: IntoIterator<Item = &'a [u8]>,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§