Expand description
The prelude module automatically imports the most important functions and structures into the Rust program.
Prelude contents
- crate::io::{
read_file()
,write_file()
}, functions for reading and writing files - crate::merge::{
merge()
,Key
,Settings
,Value
}, the main function merge along with its relevant data structures - crate::serde::{
deserialize()
,serialize()
}, serialization and deserialization functions to convert Strings intoSettings
Re-exports
pub use crate::io::read_file;
pub use crate::io::write_file;
pub use crate::merge::merge;
pub use crate::merge::Key;
pub use crate::merge::Settings;
pub use crate::merge::Value;
pub use crate::serde::deserialize;
pub use crate::serde::serialize;