pub trait JsonScan: Sized {
// Required method
fn scan_json<'a, I>(chunks: I) -> Result<Self>
where I: IntoIterator<Item = &'a [u8]>;
}Required Methods§
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".