#value #serde #utilities

serde-value-utils

Bundle of utils for serde-value

1 unstable release

0.1.0 Jul 3, 2019

#64 in #utils

Download history 48/week @ 2023-12-24 40/week @ 2023-12-31 188/week @ 2024-01-07 252/week @ 2024-01-14 309/week @ 2024-01-21 189/week @ 2024-01-28 136/week @ 2024-02-04 111/week @ 2024-02-11 161/week @ 2024-02-18 264/week @ 2024-02-25 258/week @ 2024-03-03 150/week @ 2024-03-10 215/week @ 2024-03-17 116/week @ 2024-03-24 147/week @ 2024-03-31 129/week @ 2024-04-07

610 downloads per month
Used in 3 crates (2 directly)

BSD-3-Clause

14KB
93 lines

serde-value-utils

Build Status Latest version Documentation License

Bundle of tools to use with serde_value.

Quickstart

You can start using it by first adding it to your Cargo.toml:

[dependencies]
serde = "1.0"
serde_derive = "1.0"
serde_value_utils = "0.1"

Then, create a structure which implement the serde::Serialize trait and use it with any serde lib.

Example: to_flatten_maptree

#[macro_use]
extern crate serde_derive;
extern crate serde_json;
extern crate serde_value_utils;

#[derive(Serialize, Clone, Debug)]
struct SubFoo {
    a: String,
    b: u64,
}

#[derive(Serialize, Clone, Debug)]
struct Foo {
    a: String,
    b: f64,
    c: Vec<i8>,
    d: SubFoo,
}

fn main() {
    let foo = Foo { a: "test".into(), b: 0.5, c: vec![5, 9], d: SubFoo { a: "subtest".into(), b: 695217 } };
    let ser = serde_value_utils::to_flatten_maptree("_", Some("_"), &foo).unwrap();
    println!("{}", serde_json::to_string_pretty(&ser).unwrap());
}

Output:

 {
  "_a": "test",
  "_b": 0.5,
  "_c_0": 5,
  "_c_1": 9,
  "_d_a": "subtest",
  "_d_b": 695217
}

Feature with-schema

The feature with-schema allow to suffix fields names to suits to the LDP naming conventions.

In your Cargo.toml, set:

[dependencies]
serde_value_utils = { version = "0.1", features = ["with-schema"] }

Re-run the previous example, and now the output will be :

{
  "_a": "test",
  "_b_float": 0.5,
  "_c_0_long": 5,
  "_c_1_long": 9,
  "_d_a": "subtest",
  "_d_b_double": 695217
}

Example: try_detect_type

extern crate serde_value_utils;

use serde_value_utils::try_detect_type;

fn main() {
    println!("{:?}", try_detect_type("6.5"));
}

Output:

F64(6.5)

License: BSD-3-Clause

Dependencies

~340–650KB
~14K SLoC