[][src]Struct darling_core::ast::Generics

pub struct Generics<P, W = WhereClause> {
    pub params: Vec<P>,
    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>where_clause: Option<W>

Methods

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

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

Trait Implementations

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

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

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

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

Auto Trait Implementations

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

Blanket Implementations

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

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

type Owned = T

impl<T> From for T
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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