save-load-traits 0.2.1

Provides traits for saving and loading objects asynchronously to and from files and directories.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ---------------- [ File: save-load-traits/src/imports.rs ]
pub(crate) use export_magic::*;
pub(crate) use error_tree::*;
pub(crate) use tracing::*;
pub(crate) use std::fmt::Display;
pub(crate) use std::path::{PathBuf,Path};
pub(crate) use std::io;
pub(crate) use json_repair::*;

#[cfg(test)] pub(crate) use traced_test::*;
#[cfg(test)] pub(crate) use tracing_setup::*;
#[cfg(test)] pub(crate) use serde::*;
#[cfg(test)] pub(crate) use tempfile::tempdir;
#[cfg(test)] pub(crate) use pretty_assertions::assert_eq as pretty_assert_eq;