Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xcid/descriptor

Rust struct descriptor
https://github.com/xcid/descriptor

Last synced: about 2 months ago
JSON representation

Rust struct descriptor

Awesome Lists containing this project

README

        

# Simple Struct Descriptor

[![Crates.io](https://img.shields.io/crates/v/descriptor?style=flat-square)](https://crates.io/crates/descriptor)
[![Crates.io](https://img.shields.io/crates/d/descriptor?style=flat-square)](https://crates.io/crates/descriptor)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)](https://github.com/XciD/descriptor/blob/main/LICENSE)
[![Build Status](https://img.shields.io/github/workflow/status/XciD/descriptor/CI/main?style=flat-square)](https://github.com/XciD/descriptor/actions/workflows/ci.yml?query=branch%3Amain)
[![Coverage Status](https://coveralls.io/repos/github/XciD/descriptor/badge.svg?branch=main)](https://coveralls.io/github/XciD/descriptor?branch=main)

Easy pretty print your Rust struct into single element or table

## Example

```rust
use descriptor::{object_describe_to_string, table_describe_to_string, Descriptor};

#[derive(Descriptor)]
struct User {
name: String,
age: i32,
address: Address,
}

#[derive(Descriptor)]
struct Address {
street: String,
town: String,
}

fn main() {
let user1 = User {
name: "Adrien".to_string(),
age: 32,
address: Address {
street: "Main street".to_string(),
town: "NY".to_string()
}
};
let user2 = User {
name: "Corentin".to_string(),
age: 40,
address: Address {
street: "10 rue de la paix".to_string(),
town: "Paris".to_string()
}
};
let description = object_describe_to_string(&user1).unwrap();

assert_eq!(r#"
Name: Adrien
Age: 32
Address:
Street: Main street
Town: NY
"#, description);

let table = table_describe_to_string(&vec![user1, user2]).unwrap();

assert_eq!(r#"
NAME AGE ADDRESS.STREET ADDRESS.TOWN
Adrien 32 Main street NY
Corentin 40 10 rue de la paix Paris
"#, format!("\n{}", table));
}
```