pub trait ParseAttrs: Default + Parse {
// Required method
fn try_merge(self, another: Self) -> Result<Self>;
// Provided methods
fn validate(&self, _: &str, _: Span) -> Result<()> { ... }
fn fallback(&mut self, _: &[Attribute]) -> Result<()> { ... }
fn parse_attrs<T>(name: &str, item: &T) -> Result<Self>
where T: Attrs,
for<'a> &'a T: IntoSpan { ... }
}
Expand description
Parse
ing of syn::Attribute
s into a custom defined struct.
Required Methods§
Provided Methods§
Sourcefn validate(&self, _: &str, _: Span) -> Result<()>
fn validate(&self, _: &str, _: Span) -> Result<()>
Validates these parsed attributes to meet additional invariants, if required.
The provided string contains name of the parsed syn::Attribute
, and
the provided Span
refers to the item this syn::Attribute
is
applied to. Use them to make reported errors well descriptive.
§Errors
If validation fails.
Sourcefn fallback(&mut self, _: &[Attribute]) -> Result<()>
fn fallback(&mut self, _: &[Attribute]) -> Result<()>
Falls back to another values from syn::Attribute
s, if required.
§Errors
If retrieving fallback values fails.
Sourcefn parse_attrs<T>(name: &str, item: &T) -> Result<Self>
fn parse_attrs<T>(name: &str, item: &T) -> Result<Self>
Parses this structure from the syn::Attribute
s with the given name
and contained in the given item
.
If multiple syn::Attribute
s occur with the same name
then they all
are parsed separately and then Attrs::try_merge
d.
If none syn::Attribute
s occur with the given name
then Default
value is returned, modulo Attrs::validate
.
§Errors
- If
Parse
ing of thisAttrs
fails. - If either
Attrs::try_merge()
,Attrs::validate()
orAttrs::fallback()
fails.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.