#traits #file #type #serde #read-write #deserialize #reading

from_as_file

Traits to Read and write types that implement serde Serialize and deserialize to files

3 unstable releases

0.2.0 Apr 6, 2023
0.1.1 Dec 22, 2021
0.1.0 Dec 13, 2020

#2192 in Encoding

Download history 417/week @ 2024-03-13 502/week @ 2024-03-20 395/week @ 2024-03-27 508/week @ 2024-04-03 459/week @ 2024-04-10 529/week @ 2024-04-17 417/week @ 2024-04-24 556/week @ 2024-05-01 368/week @ 2024-05-08 331/week @ 2024-05-15 411/week @ 2024-05-22 408/week @ 2024-05-29 255/week @ 2024-06-05 260/week @ 2024-06-12 333/week @ 2024-06-19 213/week @ 2024-06-26

1,086 downloads per month
Used in 2 crates

MIT license

7KB
125 lines

This crate is meant to be used in the from_as crate and may work as intended by itself.

Please use https://crates.io/crates/from_as

from_as_file

Rust traits for reading and writing files for types that implement serde.

The from_as_file crate provides two traits: FromFile and AsFile. FromFile is used for getting types from a file. AsFile is used for writing a types to a file.

The derive_from_as crate provides derive macros for these traits with the same names.

Currently, the only files types that can be used are json, yaml, and toml.

Example

    #[macro_use]
    extern crate serde_derive;
    use std::io::{Read, Write};
    use std::convert::TryFrom;
    use from_as::*;

    #[derive(Debug, Deserialize, Serialize, AsFile, FromFile)]
    struct Attribute {
        name: String,
    }
    
    fn main() {
        let attr = Attribute { 
            name: "attr_name".into()
        };
        
        // Write to the example directory.
        attr.as_file("./examples/attr.json").unwrap();
        
        let attr = Attribute::from_file("./examples/attr.json").unwrap();
        println!("{:#?}", attr);
        
        // For writing a prettified version.
        attr.as_file_pretty("./examples/attr.json").uwnrap();
    }

Dependencies

~2.3–3MB
~69K SLoC