Enum amplify_syn::Attr[][src]

pub enum Attr {
    Singular(SingularAttr),
    Parametrized(ParametrizedAttr),
}
Expand description

Internal structure representation of a proc macro attribute collected instances having some specific name (accessible via Attr::name()).

Variants

Singular

Attribute of #[attr] or #[attr = value] form, which, aside from the case where value is a string literal, may have only a single occurrence (string literals are concatenated into a single value like rust compiler does for #[doc = "..."] attributes).

Tuple Fields of Singular

0: SingularAttr
Parametrized

Parametrized attribute in form of #[attr(...)], where parameters are gathered from all attribute occurrences.

Tuple Fields of Parametrized

0: ParametrizedAttr

Implementations

Constructs Attr from a vector of all syn-parsed attributes, selecting attributes matching the provided name.

Constructor parsing Attribute value and returning either SingularAttr or ParametrizedAttr packed in form of Attr enum.

If the attribute does not match either of forms, a Error is returned. Currently, only single type of error may occur in practice:

Returns inner value \in form of SingularAttr for Attr::Singular variant, or fails with Error::SingularAttrRequired otherwise

Returns inner value \in form of ParametrizedAttr for Attr::Parametrized variant, or fails with Error::ParametrizedAttrRequired otherwise

Returns string reference to the argument name

Returns ArgValue for the Attr::Singular variant or fails with Error::ParametrizedAttrHasNoValue

Returns literal value for the Attr::Singular variant or fails with Error::ParametrizedAttrHasNoValue. See ArgValue::literal_value for more details.

Returns type value for the Attr::Singular variant or fails with Error::ParametrizedAttrHasNoValue. See ArgValue::literal_value for more details.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

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

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.