🧬 FnMeta

Crates.io docs.rs CI Coverage Status

Returns metadata about a function.

Examples

Add the following to Cargo.toml

toml fn_meta = "0.2.0"

Code:

```rust use fn_meta::FnMetadataExt;

fn myfunction(: &S0, _: &mut S1, _: &S2) -> () {}

let fnmetadata = myfunction.meta();

asserteq!( [TypeId::of::(), TypeId::of::()], fnmetadata.reads() ); asserteq!([TypeId::of::()], fnmetadata.writes());

struct S0; struct S1; struct S2; ```

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.