mattro

Enum MetaItem

Source
pub enum MetaItem {
    Path(String),
    Literal(Lit),
    NameValue(NameValue),
    Nested(MacroAttribute),
}
Expand description

Represents the data in an attribute.

Variants§

§

Path(String)

A path like: #[attribute]

§

Literal(Lit)

A literal like: #[attribute("hello world")]

§

NameValue(NameValue)

A key-value like: #[attribute(key="value")] or #[attribute(array=1,2,3,4)]

§

Nested(MacroAttribute)

Nested data like: #[attribute(inner("hello"))]

Implementations§

Source§

impl MetaItem

Source

pub fn is_path(&self) -> bool

Returns true if this meta item is a path like: #[attribute].

Source

pub fn is_literal(&self) -> bool

Returns true if this meta item is a literal like: #[attribute("hola mundo")].

Source

pub fn is_name_value(&self) -> bool

Returns true if this meta item is a name-value pair like: #[attribute(name="value")].

Source

pub fn is_nested(&self) -> bool

Returns true if this meta item is a nested attribute like: #[attribute(inner("hello"))].

Source

pub fn into_path(self) -> Option<String>

Converts this meta item into a String or None if is not a path.

Source

pub fn into_literal(self) -> Option<Lit>

Converts this meta item into a Lit or None if is not a literal.

Source

pub fn into_name_value(self) -> Option<NameValue>

Converts this meta item into a NameValue or None if is not a name-value pair.

Source

pub fn into_nested(self) -> Option<MacroAttribute>

Converts this meta item into a its inner MacroAttribute or None if is not a nested attribute.

Source

pub fn as_path(&self) -> Option<&str>

Returns a reference to this meta item as a &str or None if is not a path.

Source

pub fn as_literal(&self) -> Option<&Lit>

Returns a reference to this meta item as a Lit or None if is not a literal.

Source

pub fn as_name_value(&self) -> Option<&NameValue>

Returns a reference to this meta item as a NameValue or None if is not a name-value pair.

Source

pub fn as_nested(&self) -> Option<&MacroAttribute>

Returns a reference to this meta item as a nested macro attribute or None if is not a macro attribute.

Trait Implementations§

Source§

impl Clone for MetaItem

Source§

fn clone(&self) -> MetaItem

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for MetaItem

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Display for MetaItem

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Hash for MetaItem

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for MetaItem

Source§

fn eq(&self, other: &MetaItem) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for MetaItem

Source§

impl StructuralPartialEq for MetaItem

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.