[][src]Struct darling::ast::Generics

pub struct Generics<P, W = WhereClause> {
    pub params: Vec<P, Global>,
    pub where_clause: Option<W>,
}

A mirror of the syn::Generics type which can contain arbitrary representations of params and where clauses.

Fields

params: Vec<P, Global>where_clause: Option<W>

Implementations

impl<P, W> Generics<P, W>[src]

pub fn type_params(&'a self) -> TypeParams<'a, P>[src]

Trait Implementations

impl<P, W> Clone for Generics<P, W> where
    P: Clone,
    W: Clone
[src]

impl<P, W> Debug for Generics<P, W> where
    P: Debug,
    W: Debug
[src]

impl<P, W> Eq for Generics<P, W> where
    P: Eq,
    W: Eq
[src]

impl<P> FromGenerics for Generics<P, WhereClause> where
    P: FromGenericParam
[src]

impl<P, W> PartialEq<Generics<P, W>> for Generics<P, W> where
    P: PartialEq<P>,
    W: PartialEq<W>, 
[src]

impl<P, W> StructuralEq for Generics<P, W>[src]

impl<P, W> StructuralPartialEq for Generics<P, W>[src]

Auto Trait Implementations

impl<P, W> RefUnwindSafe for Generics<P, W> where
    P: RefUnwindSafe,
    W: RefUnwindSafe

impl<P, W> Send for Generics<P, W> where
    P: Send,
    W: Send

impl<P, W> Sync for Generics<P, W> where
    P: Sync,
    W: Sync

impl<P, W> Unpin for Generics<P, W> where
    P: Unpin,
    W: Unpin

impl<P, W> UnwindSafe for Generics<P, W> where
    P: UnwindSafe,
    W: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.