
Successor to #27779 - in this PR I've applied changes manually, without futzing with if let lifetimes at all. Release Notes: - N/A
21 lines
647 B
Rust
21 lines
647 B
Rust
use proc_macro::TokenStream;
|
|
use quote::quote;
|
|
use syn::{parse_macro_input, DeriveInput};
|
|
|
|
pub fn derive_render(input: TokenStream) -> TokenStream {
|
|
let ast = parse_macro_input!(input as DeriveInput);
|
|
let type_name = &ast.ident;
|
|
let (impl_generics, type_generics, where_clause) = ast.generics.split_for_impl();
|
|
|
|
let r#gen = quote! {
|
|
impl #impl_generics gpui::Render for #type_name #type_generics
|
|
#where_clause
|
|
{
|
|
fn render(&mut self, _window: &mut gpui::Window, _cx: &mut gpui::Context<Self>) -> impl gpui::Element {
|
|
gpui::Empty
|
|
}
|
|
}
|
|
};
|
|
|
|
r#gen.into()
|
|
}
|