Enum syn::NestedMeta
[−]
[src]
pub enum NestedMeta { Meta(Meta), Literal(Lit), }
Element of a compile-time attribute list.
This type is available if Syn is built with the "derive"
or "full"
feature.
Variants
Meta(Meta)
A structured meta item, like the Copy
in #[derive(Copy)]
which
would be a nested Meta::Word
.
Literal(Lit)
A Rust literal, like the "new_name"
in #[rename("new_name")]
.
Trait Implementations
impl Clone for NestedMeta
[src]
fn clone(&self) -> NestedMeta
[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 From<Meta> for NestedMeta
[src]
fn from(e: Meta) -> NestedMeta
[src]
Performs the conversion.
impl From<Lit> for NestedMeta
[src]
fn from(e: Lit) -> NestedMeta
[src]
Performs the conversion.