Skip to content

tembo-io/dyson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dyson (DisplaY as jSON)

dyson is a tiny crate for zero-copy JSON Display implementation for any type that implements Serialize.

use dyson::Json;

#[derive(Serialize)]
struct Object {
   key: String,
   values: Vec<u8>,
}

let obj = Object {
   key: "KEY01",
   values: vec![1, 2, 3],
}

// Displays as JSON
let json = Json(&obj);

// Displays as pretty-printed JSON
let json_pretty = JsonPretty(&obj);

// Displays "{'key':'KEY01', 'values':[1,2,3]}
println!("{json}");

// Displays "{
//    'key': 'KEY01',
//    'values': [1, 2, 3]
// }"
println!("{json_pretty}");

This crate uses serde_json internally and therefore shall always match whatever serde_json::to_string produces, with the added benefit of not having to allocate a temporary String for common use cases such as printing a JSON-formatted string to stdout or within format!.

use dyson::Json;

fn send_message(message: &Message) -> Result {
   query("SELECT from send_message($1::jsonb)", Json(message))
}

About

Tiny crate to display values as JSON

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages