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

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

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

Fields

parsed: Toriginal: O

Methods

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

pub fn new(parsed: T, original: O) -> Self
[src]

Trait Implementations

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

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

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

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

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

fn from_nested_meta(item: &NestedMeta) -> Result<Self>
[src]

fn from_word() -> Result<Self>
[src]

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

fn from_list(items: &[NestedMeta]) -> Result<Self>
[src]

Create an instance from a list of nested meta items.

fn from_value(value: &Lit) -> Result<Self>
[src]

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

fn from_char(value: char) -> Result<Self>
[src]

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

fn from_string(value: &str) -> Result<Self>
[src]

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

fn from_bool(value: bool) -> Result<Self>
[src]

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]

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

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

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

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

Performs copy-assignment from source. Read more

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

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

Blanket Implementations

impl<T> From for T
[src]

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, 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> BorrowMut for T where
    T: ?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> Any for T where
    T: 'static + ?Sized
[src]