Declaration Site

License Crates.io Bevy Discord

Implements iterating through the debug info associated with currently loaded objects, to find functions. The main entry point for this crate is [for_some_currently_loaded_rust_functions], which internally iterates through all functions which can be found.

This crate was created to be used by bevy, for reporting errors with systems. Other crates making similar use of dependency injection may find this useful. This can be used to get the source code location of a function item type. This is implemented in [declaration_by_name] and the related functions. However, if searching for multiple names, it will be much more efficient to use [for_some_currently_loaded_rust_functions]:

```rust,no_run

use declarationsite::{forsomecurrentlyloadedrustfunctions, DeclarationSite};

use std::collections::HashMap;

let mut expectednames = HashMap::>::from([ // Note that source locations for std/core are less likely to work, this is just an example ("std::io::read".into(), None), ("std::io::write".into(), None), ]); forsomecurrentlyloadedrustfunctions(|name, function| { if let Some(result) = expectednames.getmut(&name) { // Note that the TryFrom impl is only for &Function, so need to add // the reference *result = DeclarationSite::try_from(&function).ok(); }; // We could bail early here if all names have been filled, but that would // complicate the example. See the item level documentation for details }); // Do things with expected_names... ```

Caveats

This is a best-effort search only. It may fail to find a given name for any number of reasons:

Changelog

See CHANGELOG.md

License

Some parts of this work (those in src/symbolicobject) are adapted from works licensed only under the MIT license, which can be found in src/symbolicobject/LICENSE. Modifications are also licensed under the terms below. Note that this is the same license as the already existing symbolic-debuginfo dependency.

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.