4 releases

0.2.1 Sep 26, 2020
0.2.0 Aug 24, 2019
0.1.1 Feb 7, 2019
0.1.0 Feb 6, 2019

#157 in #methods

Download history 11405/week @ 2023-11-20 12513/week @ 2023-11-27 11243/week @ 2023-12-04 12559/week @ 2023-12-11 10855/week @ 2023-12-18 3337/week @ 2023-12-25 6856/week @ 2024-01-01 9358/week @ 2024-01-08 8832/week @ 2024-01-15 9415/week @ 2024-01-22 9633/week @ 2024-01-29 11095/week @ 2024-02-05 13045/week @ 2024-02-12 12014/week @ 2024-02-19 12018/week @ 2024-02-26 11339/week @ 2024-03-04

48,473 downloads per month
Used in 7 crates (2 directly)

Apache-2.0 OR MIT

7KB
72 lines

aspect-rs

Build Status License Cargo Documentation Rust 1.31+

An Aspect Toolkit for Rust

Aspect-RS is a project aiming to provide common ground for the main Aspect-Oriented use cases in Rust. By leveraging the trait system, declarative and procedural macros, Aspect-RS provides blocks that let you wrap methods with your custom logic.

The project has been extracted from the Metered project, which uses the technique to build metrics that can work on expressions or methods, whether they're async or not. The technique seemed general enough to be in its own crate and see if it is of any interest to other parties.

Aspect-RS provides "pointcut" traits when entering or exiting an expression (OnEnter and OnResult), experimental Update and UpdateRef traits that can use parameter shadowing to intercept and update method parameters, and weaving constructs useful when building procedural macros. Please look at the Metered project to see Aspect-RS in action.

Changelog

  • 0.2.1:
    • Added leave_scope function to OnResult to allow aspects to have a drop implementation to handle aspects that never returned
    • Updated indexmap to 1.6
  • 0.2.0:
    • Updated dependencies to use syn, proc-macro2 and quote 1.0

Required Rust version

Aspect-RS runs on Rust stable.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2.5MB
~51K SLoC