hanger

Crates.iohanger
lib.rshanger
version0.1.0
sourcesrc
created_at2019-05-10 02:19:34.182277
updated_at2019-05-10 02:19:34.182277
descriptionAttribute macro to put hooks around a function.
homepagehttps://github.com/overvenus/hanger
repositoryhttps://github.com/overvenus/hanger
max_upload_size
id133189
size19,607
Neil Shen (overvenus)

documentation

https://docs.rs/hanger

README

[hanger::hook()]

Build Status Latest Version Documentation

Call hooks before/after your functions.

Add this to your Cargo.toml:

[dependencies]
hanger = "0.1"

Add hooks to any functions.

fn hello() { print!("hello") }

#[hanger::hook(hello)]
fn world() { print!("world") }

world(); // It prints "helloworld".

License

This project is licensed under either of

at your option.

Contribution

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

Commit count: 5

cargo fmt