Trait darling::FromGenerics [] [src]

pub trait FromGenerics {
    fn from_generics(generics: &Generics) -> Result<Self, Error>;
}

Creates an instance by parsing an entire generics declaration, including the where clause.

Required Methods

Implementations on Foreign Types

impl<T> FromGenerics for Result<T, Error> where
    T: FromGenerics
[src]

impl FromGenerics for ()
[src]

[src]

impl FromGenerics for Generics
[src]

Implementors