🚚 Rename macro AssignHandle to BindHandle

This commit is contained in:
Manuel Cillero 2023-11-20 20:37:03 +01:00
parent a03472a2bc
commit dc4210bcb8
13 changed files with 15 additions and 15 deletions

View file

@ -128,8 +128,8 @@ pub fn base_handle_derive(input: TokenStream) -> TokenStream {
impl_handle(input, quote! { crate })
}
#[proc_macro_derive(AssignHandle, attributes(handle))]
pub fn assign_handle_derive(input: TokenStream) -> TokenStream {
#[proc_macro_derive(BindHandle, attributes(handle))]
pub fn bind_handle_derive(input: TokenStream) -> TokenStream {
impl_handle(input, quote! { pagetop })
}