serdeio 0.6.0

Tiny IO utility library for Rust to serialize/deserialize Serde compatible structs
Documentation
#![allow(clippy::non_ascii_literal)]
#![allow(clippy::module_name_repetitions)]
#![doc = include_str!("../README.md")]

pub(crate) mod backend;
pub(crate) mod error;
pub(crate) mod read;
pub(crate) mod types;
pub(crate) mod write;

pub use error::Error;
pub use read::{
    read_record_from_file, read_record_from_reader, read_records_from_file,
    read_records_from_reader,
};
pub use types::DataFormat;
pub use write::{
    write_record_to_file, write_record_to_writer, write_records_to_file, write_records_to_writer,
};