Struct darling::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: T
original: O
Implementations
Trait Implementations
Create an instance from syn::DeriveInput
, or return an error.
pub fn from_generic_param(
value: &GenericParam
) -> Result<WithOriginal<T, GenericParam>, Error>
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 syn::Variant
, or return an error.
impl<T, O> PartialEq<WithOriginal<T, O>> for WithOriginal<T, O> where
T: PartialEq<T>,
O: PartialEq<O>,
impl<T, O> PartialEq<WithOriginal<T, O>> for WithOriginal<T, O> where
T: PartialEq<T>,
O: PartialEq<O>,
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more