lib.rs 311 B

1234567891011
  1. extern crate proc_macro;
  2. /// A marker attribute used to mark const values that should be included in the
  3. /// generated IDL but functionally does nothing.
  4. #[proc_macro_attribute]
  5. pub fn constant(
  6. _attr: proc_macro::TokenStream,
  7. input: proc_macro::TokenStream,
  8. ) -> proc_macro::TokenStream {
  9. input
  10. }