gpui-component-macros 0.5.1

Macros for GPUI Component.
Documentation
1
2
3
4
5
6
7
8
use proc_macro::TokenStream;

mod derive_into_plot;

#[proc_macro_derive(IntoPlot)]
pub fn derive_into_plot(input: TokenStream) -> TokenStream {
    derive_into_plot::derive_into_plot(input)
}