#[macro_use]
extern crate darling;
extern crate syn;
use darling::FromDeriveInput;
#[derive(Debug, FromMetaItem)]
struct Dolor {
#[darling(rename = "amet")]
sit: bool,
world: bool,
}
#[derive(Debug, FromDeriveInput)]
#[darling(from_ident, attributes(hello))]
struct Lorem {
ident: syn::Ident,
ipsum: Dolor,
}
impl From<syn::Ident> for Lorem {
fn from(ident: syn::Ident) -> Self {
Lorem {
ident,
ipsum: Dolor {
sit: false,
world: true,
},
}
}
}
#[test]
fn parsing_fail() {
let di = syn::parse_str(r#"
#[hello(ipsum(amet = "yes", world = false))]
pub struct Foo;
"#).unwrap();
println!("{}", Lorem::from_derive_input(&di).unwrap_err());
}
#[test]
fn missing_field() {
let di = syn::parse_str(r#"
#[hello(ipsum(amet = true))]
pub struct Foo;
"#).unwrap();
println!("{}", Lorem::from_derive_input(&di).unwrap_err());
}