Filess
Simplify file management with file primitives.
Use filess as you would use String or Vec.
Each file format is now a separate type, if your function needs json, you can put 'filess::Json' as file type, enforcing the proper path.
Filess simplifies saving and loading of data, with serde and image optional integration.
let file1: Json = new; // Create new Json file. Filess will ensure that it's a valid path
let data: String = file1.load; // Load data from a file as a String
let model = file1.; // `Serde` integration: load model from the file
file1.save; // Save anything with `impl AsRef<[u8]>`
file1.save_model; // `Serde` integration: save a model into file easily
let file2: Jpeg = new;
let image: DynamicImage = file2.load_image; // `Image` integration: load image of jpeg format from file
file2.save_image; // `Image` integration: save `DynamicImage` with default compression parameters
file2.save_image_custom; // `Image` integration: save `DynamicImage` with custom quality parameters (only available if supports quality settings)
[!NOTE] In beta, adding new file formats is a bit bothersome