🧬 FnMeta

Crates.io docs.rs CI Coverage Status

Returns metadata about a function at runtime.

Currently this includes the [TypeId]s of function parameters.

This includes a [FnMetadata] struct and [FnMetadataExt] trait. FnMetadataExt adds the .metadata() function on functions and closures to return a FnMetadata, whose implementation returns function metadata at runtime.

Usage

Add the following to Cargo.toml

```toml fn_meta = "0.3.0"

or

fnmeta = { version = "0.3.0", features = ["fnmeta_ext"] } ```

Code:

```rust use fn_meta::FnMetadataExt;

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

let fn_metadata = f1.metadata();

asserteq!( [TypeId::of::(), TypeId::of::()], fnmetadata.borrows() ); asserteq!([TypeId::of::()], fnmetadata.borrow_muts());

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

Features

"fn_meta_ext":

Enables the FnMeta and FnMetaExt traits. FnMetaExt adds the .meta() function on functions and closures to return a Box<dyn FnMeta>, which is the dynamic dispatch analog to FnMetadata.

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.