#output #structured #line #cli #instance #arguments #printed

structured-output

A library for structured CLI output that can be displayed as either printed lines or JSON

2 releases

0.1.1 May 10, 2023
0.1.0 May 10, 2023

#1 in #printed

Download history 38/week @ 2024-07-20 22/week @ 2024-07-27 31/week @ 2024-08-03 22/week @ 2024-08-10 34/week @ 2024-08-17 44/week @ 2024-08-24 91/week @ 2024-08-31 65/week @ 2024-09-07 114/week @ 2024-09-14 111/week @ 2024-09-21 76/week @ 2024-09-28 28/week @ 2024-10-05 56/week @ 2024-10-12 62/week @ 2024-10-19 107/week @ 2024-10-26 47/week @ 2024-11-02

274 downloads per month
Used in 8 crates

Apache-2.0

5KB

structured-output Rust crate

StructuredOutput is a Rust library that provides a struct for handling structured output with both a string and a JSON value.

Installation

To use this library in your Rust project, add the following to your Cargo.toml file:

[dependencies]
structured_output = "0.1.0"

Usage

You can then create a new StructuredOutput instance using the new method, which takes a string and a JSON value as arguments:

let lines = "Hello world!";
let json = serde_json::json!({ "message": lines });
let output = StructuredOutput::new(lines, json.clone());

You can retrieve the string and JSON value separately using the lines and json methods:

assert_eq!(output.lines(), "Hello world!");
assert_eq!(output.json(), &json);

You can also get the JSON value as a JSON string or a pretty-printed JSON string using the to_json_string and to_json_pretty methods:

assert_eq!(output.to_json_string(), "{\"message\":\"Hello world!\"}");
assert_eq!(output.to_json_pretty(), "{\n  \"message\": \"Hello world!\"\n}");

The StructuredOutput implementation of the Display trait defaults to the string value. You can print the string value directly with the println! macro:

println!("{}", output);

License

This library is licensed under the Apache 2.0 License.

Dependencies

~0.7–1.6MB
~34K SLoC