spring_batch_rs/item/json/
mod.rs

1/// The `json_reader` module contains the `JsonItemReader` struct, which is the main entry point for reading items from a JSON data source.
2/// It implements the `ItemReader` trait and provides methods for reading items from a JSON data source and deserializing them into Rust structs.
3///
4pub mod json_reader;
5/// The `json_writer` module contains the `JsonItemWriter` struct, which is the main entry point for writing items to a JSON data source.
6/// It implements the `ItemWriter` trait and provides methods for serializing Rust structs into JSON and writing them to a data source.
7///
8pub mod json_writer;