Crates.io | sing_rs |
lib.rs | sing_rs |
version | 0.1.3 |
source | src |
created_at | 2022-03-27 14:52:03.109609 |
updated_at | 2022-04-05 19:40:45.692635 |
description | Macros for generating STDIN/STDOUT interfaces to trait objects. |
homepage | |
repository | https://gitea.chaostreff-alzey.de/Thelie/sing |
max_upload_size | |
id | 557292 |
size | 39,068 |
Std
I/o
Negotiator
Generator
This crate is meant to create interfaces between traits in Rust libraries and the command line. It does this by providing two macros:
sing_add_trait
, which acts as an attribute to a trait implementation and gathers the method signatures that are used by sing_loop!
.sing_loop!
, which takes a trait object and serialization/deserialization functions as well as some optional parameters. It generates a loop parsing function calls coming from STDIN (or any other BufRead
stream), evaluating them by calling the appropriate method on the object and returning them on STDOUT (or any other Write
stream).use serde::{Serialize, Deserialize};
use sing_rs::{sing_add_trait, sing_loop};
trait FruitTree {
fn shake(&self, shakes: u32) -> Vec<Fruit>;
}
#[derive(Debug, Serialize, Deserialize)]
struct Fruit {
fruit_type: String,
}
struct BananaTree;
#[sing_add_trait()]
impl FruitTree for BananaTree {
fn shake(&self, shakes: u32) -> Vec<Fruit>{
let mut out = vec!();
for _ in 0..shakes {
out.push(Fruit{fruit_type: String::from("Banana")});
}
out
}
}
fn main() {
let tree = BananaTree {};
sing_loop!(tree, [different, ron::to_string, ron::from_str],);
}
Yes, it's somewhat far-fetched, but I really wanted to be able to sing and clap in my rusty command-line projects.
See above.