pub struct SingularAttr {
    pub name: String,
    pub value: ArgValue,
}
Expand description

Structure describing a procedural macro attribute with an optional value. The means that if one has something like #[name1], #[name2 = "value"], #[name3 = ::std::path::PathBuf)] than name1, name2 = "value", and name3 = ::std::path::PathBuf are three different attributes which can be parsed and represented by the SingularAttr structure.

NB: For #[attr(arg1, arg2 = value)] style of proc macros use ParametrizedAttr structure. If you need to support both use Attr enum.

Internally the structure is composed of the name and value fields, where name is always a syn::Ident (corresponding name1, name2, name3 from the sample above) and value is an optional literal Lit, with corresponding cases of None, Some(ArgValue::Literal(Lit::Str(LitStr))), and Some(ArgValue::Type(Type::Path(Path))).

Fields§

§name: String

Optional attribute argument path part; for instance in #[my(name = value)] or in #[name = value] this is a name part

§value: ArgValue

Attribute argument value part; for instance in #[name = value] this is the value part

Implementations§

source§

impl SingularAttr

source

pub fn new(name: impl ToString) -> Self

Constructs named SingularAttr without value

source

pub fn with(name: impl ToString, attrs: &[Attribute]) -> Result<Self, Error>

Constructs SingularAttr from a vector of all syn-parsed attributes, selecting single attribute matching the provided name. If there are multiple instances of the same attribute, fails with Error::SingularAttrRequired

source

pub fn with_literal(name: impl ToString, lit: Lit) -> Self

Constructs named SingularAttr setting its value to the provided literal

source

pub fn with_type(name: impl ToString, ty: Type) -> Self

Constructs named SingularAttr setting its value to the provided rust type value

source

pub fn from_attribute(attr: &Attribute) -> Result<Self, Error>

Constructs SingularAttr from a given syn::Attribute by parsing its data. Accepts only attributes having form #[attr(name = value)] and errors for other attribute types with Error::ArgNameMustBeIdent and Error::SingularAttrRequired

source

pub fn literal_value(&self) -> Result<Lit, Error>

Returns literal value, if any, or fails with Error::ArgValueRequired. See ArgValue::to_literal_value for the details.

source

pub fn type_value(&self) -> Result<Type, Error>

Returns type value, if any, or fails with Error::ArgValueRequired. See ArgValue::to_literal_value for the details.

source

pub fn merge(&mut self, other: Self) -> Result<(), Error>

Merges data from the other into the self.

Errors
source

pub fn merged(self, other: Self) -> Result<Self, Error>

Does merging as in SingularAttr::merge, but unlike it consumes the self and returns a merged structure in case of the successful operation. Useful in operation chains.

source

pub fn enrich(&mut self, attr: &Attribute) -> Result<(), Error>

Enriches current attribute data by adding information from the provided syn::Attribute.

Errors
source

pub fn enriched(self, attr: &Attribute) -> Result<Self, Error>

Performs enrich operation as in SingularAttr::enrich, but unlike it consumes the self and returns an enriched structure in case of the successful operation. Useful in operation chains.

source

pub fn check(&mut self, req: ArgValueReq) -> Result<(), Error>

Checks that the structure meets provided value requirements (see ArgValueReq), generating Error if the requirements are not met.

source

pub fn checked(self, req: ArgValueReq) -> Result<Self, Error>

Performs check as in SingularAttr::check, but unlike it consumes the self and returns a itself in case of the successful operation. Useful in operation chains.

Trait Implementations§

source§

impl Clone for SingularAttr

source§

fn clone(&self) -> SingularAttr

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 SingularAttr

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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 Twhere T: Clone,

§

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, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.