1 stable release

1.0.0 Aug 18, 2024

#786 in Rust patterns

MIT/Apache

30KB
639 lines

quote-data

A tokenization Library for Rust.

Usage

quote-data provide derive macro quote_data::QuoteIt, which implements quote::ToTokens for struct or enum.

use quote_data::QuoteIt;
use proc_macro2::TokenStream;
use quote::quote;

#[derive(QuoteIt)]
struct Foo {
    a: i32,
    b: i64
}

#[derive(QuoteIt)]
#[mod_path="path::to::mod"]
enum Bar {
    A(u8, String),
    B
}

fn some_fn() -> TokenStream {
    let foo = Foo {a: 1, b: 2};
    let bar = Bar::A(1, "test".to_string);

    quote! {
        || (#foo, #bar)
    }
}

Supported Types

  • Any types implemented quote::ToTokens
  • String
  • Vec, HashMap, HashSet
  • Result, Option
  • Tuple
  • std::marker::PhantomData

Dependencies

~300–770KB
~18K SLoC