Returns metadata about a function.
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::
struct S0; struct S1; struct S2; ```
Licensed under either of
at your option.
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.