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.1.0"
… or whatever other version is more up-to-date.
Then add …
```rust
``
… to your crate's root file (e.g.
lib.rs,
main.rs`).
This gives you access to the following attributes:
```rust
```
```rust
pub struct Foo;
mod Bar { pub struct Baz; // ... }
impl Blee { fn foo(&self) { /* ... / } fn bar(&self) { / ... / } fn baz(&self) { / ... / } fn blee(&self) { / ... */ } }
fn main() { Foo == Foo; Bar::Baz == Bar::Baz; } ```
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 BSD License - see the LICENSE.md file for details.