Enum darling::usage::Purpose[][src]

pub enum Purpose {
    BoundImpl,
    Declare,
}

The goal of tracing generic parameter usage.

Not all uses of type parameters imply a need to add bounds to a generated trait impl. For example, a field of type <Vec<T> as a::b::Trait>::Associated does not need a where T: Serialize bound in serde. However, a proc macro that is attempting to generate a helper struct would need to know about this usage, or else the generated code would reference an unknown type T and fail to compile.

Variants

BoundImpl

The tracing is being used to generate an impl block.

Uses such as syn::TypePath.qself will not be returned.

Declare

The tracing is being used to generate a new struct or enum.

All uses will be returned.

Trait Implementations

impl Clone for Purpose[src]

impl Debug for Purpose[src]

impl From<Purpose> for Options[src]

impl PartialEq<Purpose> for Purpose[src]

impl Copy for Purpose[src]

impl Eq for Purpose[src]

impl StructuralEq for Purpose[src]

impl StructuralPartialEq for Purpose[src]

Auto Trait Implementations

impl RefUnwindSafe for Purpose

impl Send for Purpose

impl Sync for Purpose

impl Unpin for Purpose

impl UnwindSafe for Purpose

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.