Displays (json) structures in a pretty way.
This crate is linked to the crud library. If I have time and motivation to generalize it, it can be an indenpendant crate.
```rust use crudprettystruct_derive::PrettyPrint;
struct Foo {
#[pretty(color="green")]
a: u32,
#[pretty(skipnone)]
b: Option
is_pretty
the nested struct implements PrettyPrint
and should be printed using it.
```rust use crudprettystruct_derive::PrettyPrint;
struct OtherPrettyStruct {}
struct Foo { #[pretty(is_pretty)] field: OtherPrettyStruct } ```
label
custom label for this field ```rust
struct Foo { #[pretty(label="☀️ my field")] field: u32 } ```
color
custom color for this field. The avaiable colors are [Color]. ```rust
struct Foo { #[pretty(color="red")] field: u32 } ```
label_color
custom color for the label of this field. The avaiable colors are [Color]. ```rust
struct Foo { #[pretty(color="red")] field: u32 } ```
skip
skip the field. It won't be display. ```rust
struct Foo { #[pretty(skip)] field: u32 } ```
skip_none
skip the field if the value is None
. The type of the field should be an Option<T>
.
```rust
struct Foo {
#[pretty(skip_none)]
field: Option
formatter
Custom value formatter for this field.
Some [formatters] are shipped in this crate. ```rust
struct Foo { #[pretty(formatter=crudprettystruct::formatters::boolcheckformatter)] field: bool } ```
Formatters should follow this signature:
rust
type Formatter = dyn Fn(/*value:*/ &dyn ToString, /*colored:*/ bool) -> miette::Result<(String, bool)>;
Parameters:
- value
: the value to format
- colored
: when true
the formatted value can be colored
Result:
- String: the formatted value
- bool: returns true
if the value have colors. returns false
if the value don't have colors then default color will be applied.
```rust
struct Foo { #[pretty(formatter=|x, | Ok((format!("{} kg", x.tostring()), false)))] field: f32 } ```