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

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

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

Fields

parsed: Toriginal: O

Implementations

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

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

Trait Implementations

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

fn clone(&self) -> WithOriginal<T, O>[src]

Returns a copy of the value. Read more

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]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

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

fn from_derive_input(value: &DeriveInput) -> Result<Self>[src]

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

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

fn from_field(value: &Field) -> Result<Self>[src]

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

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

fn from_generics(value: &Generics) -> Result<Self>[src]

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

fn from_meta(value: &Meta) -> Result<Self>[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

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]

fn from_variant(value: &Variant) -> Result<Self>[src]

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

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

fn eq(&self, other: &WithOriginal<T, O>) -> bool[src]

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

fn ne(&self, other: &WithOriginal<T, O>) -> bool[src]

This method tests for !=.

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

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

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

Auto Trait Implementations

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

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

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

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

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.