Struct darling_core::util::WithOriginal[][src]

pub struct WithOriginal<T, O> {
    pub parsed: T,
    pub original: O,
}

A container to parse some syntax and retain access to the original.

Fields

Methods

impl<T, O> WithOriginal<T, O>
[src]

Trait Implementations

impl<T: Debug, O: Debug> Debug for WithOriginal<T, O>
[src]

Formats the value using the given formatter. Read more

impl<T: Clone, O: Clone> Clone for WithOriginal<T, O>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: PartialEq, O: PartialEq> PartialEq for WithOriginal<T, O>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Eq, O: Eq> Eq for WithOriginal<T, O>
[src]

impl<T: FromDeriveInput> FromDeriveInput for WithOriginal<T, DeriveInput>
[src]

Create an instance from syn::DeriveInput, or return an error.

impl<T: FromField> FromField for WithOriginal<T, Field>
[src]

impl<T: FromGenerics> FromGenerics for WithOriginal<T, Generics>
[src]

impl<T: FromGenericParam> FromGenericParam for WithOriginal<T, GenericParam>
[src]

impl<T: FromMeta> FromMeta for WithOriginal<T, Meta>
[src]

Create an instance from a syn::Meta by dispatching to the format-appropriate trait function. This generally should not be overridden by implementers. Read more

Create an instance from the presence of the word in the attribute with no additional options specified. Read more

Create an instance from a list of nested meta items.

Create an instance from a literal value of either foo = "bar" or foo("bar"). This dispatches to the appropriate method based on the type of literal encountered, and generally should not be overridden by implementers. Read more

Create an instance from a char literal in a value position.

Create an instance from a string literal in a value position.

Create an instance from a bool literal in a value position.

impl<T: FromTypeParam> FromTypeParam for WithOriginal<T, TypeParam>
[src]

impl<T: FromVariant> FromVariant for WithOriginal<T, Variant>
[src]

Create an instance from syn::Variant, or return an error.

Auto Trait Implementations

impl<T, O> Send for WithOriginal<T, O> where
    O: Send,
    T: Send

impl<T, O> Sync for WithOriginal<T, O> where
    O: Sync,
    T: Sync