A syntax extension providing higher-order attributes to Rust.
Sometimes it would be desirable to be able to apply certain attributes to all items in a scope (mod
, trait
or impl
). The apply_attr
crate aims to provide a versatile API for this.
Possible use-cases would be:
xyz
use #[derive(PartialEq)]
.impl
with #[inline(never)]
(for profiling, e.g.).Add the following to your dependencies in your project's Cargo.toml
:
toml
apply_attr = "0.2.0"
… or whatever version is more up-to-date.
Then add …
```rust
``
… to your crate's root file (e.g.
lib.rs,
main.rs`).
Once that's done you're ready to play!
```rust
// Make all top-level structs as well as those
// within top-level mods implement PartialEq
:
pub struct Foo;
mod Bar { pub struct Baz; // ... }
// Disable inlining when no_inline
feature is present:
impl Blee { fn foo(&self) { ... } fn bar(&self) { ... } fn baz(&self) { ... } fn blee(&self) { ... } }
fn main() { Foo == Foo; Bar::Baz == Bar::Baz; } ```
The apply_attr
syntax extension provides a single higher-order attribute,
conveniently named apply_attr
expecting two arguments:
to(...)
(with ...
being a list of zero or more selectors).default(...)
or override(...)
(with ...
being a list of zero or more attributes).Resulting either of:
```rust
```
The first argument (to(...)
) accepts a nested list of item selectors.
Selectors behave similar to CSS selectors:
As such a CSS selector like div > span, p
would translate to to(div(span), p)
.
The following selectors are supported:
rust
consts
crates
def_impls
enums
fgn_mods
fns
impls
macros
mods
statics
structs
traits
types
uses
With the following ones allowing for nesting:
rust
mods(...)
impls(...)
traits(...)
Nested selectors denote direct ancestry equivalent to CSS's outer > inner
path operator.
Attributes can either be applied as using default(...)
, in which case …
```rust
impl Foo { #[inline(always)] fn foo() { ... } } ```
… will be turned into …
rust
impl Foo {
#[inline(always)]
fn foo() { ... }
}
… upon completion.
Or using override(...)
, in which case …
```rust
impl Foo { #[inline(always)] fn foo() { ... } } ```
… will be turned into …
rust
impl Foo {
#[inline(never)]
fn foo() { ... }
}
… upon completion.
To see how the attributes were applied compile your crate using this (requires nightly
):
bash
cargo rustc -- -Z unstable-options --pretty=expanded
Please read CONTRIBUTING.md for details on our code of conduct,
and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the [MPL-2.0](https://tldrlegal.com/license/mozilla-public-license-2.0-(mpl-2) – see the LICENSE.md file for details.