docs: add readme

This commit is contained in:
2025-07-14 18:49:53 +03:00
parent 62f48cf3cd
commit 4a0ac666ac
4 changed files with 96 additions and 13 deletions

View File

@@ -1,8 +1,8 @@
use proc_macro2::TokenStream;
use proc_macro::TokenStream;
use quote::{format_ident, quote};
use syn::{
Attribute, Data, DeriveInput, Error, Expr, Fields, GenericParam, Generics, Meta, Result,
parse_quote,
WherePredicate, parse_quote, parse2,
};
const WITH_MERGE: bool = cfg!(feature = "merge");
@@ -78,8 +78,11 @@ pub fn impl_from_file(input: &DeriveInput) -> Result<TokenStream> {
} else {
let mut where_clause = where_clause.cloned();
if let Some(wc) = &mut where_clause {
wc.predicates
.extend(default_bounds.into_iter().map(|bound| parse_quote!(#bound)));
wc.predicates.extend(
default_bounds
.into_iter()
.map(|bound| parse2::<WherePredicate>(bound).unwrap()),
);
} else {
where_clause = Some(parse_quote!(where #(#default_bounds),*));
}
@@ -117,8 +120,7 @@ pub fn impl_from_file(input: &DeriveInput) -> Result<TokenStream> {
Self::from_file(value)
}
}
}
.into())
}.into())
}
fn add_trait_bouts(mut generics: Generics) -> Generics {
@@ -136,9 +138,8 @@ fn parse_default_attr(attr: &Attribute) -> Result<Option<Expr>> {
}
let meta = attr.parse_args::<Meta>()?;
let name_value = match meta {
Meta::NameValue(nv) => nv,
_ => return Err(Error::new_spanned(attr, "Expected #[default = \"value\"]")),
let Meta::NameValue(name_value) = meta else {
return Err(Error::new_spanned(attr, "Expected #[default = \"value\"]"));
};
match name_value.value {

View File

@@ -9,8 +9,5 @@ use syn::{DeriveInput, parse_macro_input};
#[proc_macro_derive(FromFile, attributes(from_file))]
pub fn derive_from_file(input: TokenStream) -> TokenStream {
let inp = parse_macro_input!(input as DeriveInput);
match impl_from_file(&inp) {
Ok(ts) => ts.into(),
Err(e) => e.to_compile_error().into(),
}
impl_from_file(&inp).unwrap_or_else(|e| e.to_compile_error().into())
}