Trait darling::FromDeriveInput []

pub trait FromDeriveInput {
    fn from_derive_input(input: &DeriveInput) -> Result<Self, Error>;
}

Creates an instance by parsing an entire proc-macro derive input, including the, identity, generics, and visibility of the type.

Required Methods

Implementors