We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basically this. For example the instantiations of HashMap::insert could be:
HashMap<(alloc::string::String, usize), alloc::rc::Rc<core::cell::RefCell<mir::node::MirNode>>> HashMap<(dataflow::domain::Index, usize), (dataflow::statistics::DomainStats, std::collections::hash::map::HashMap<petgraph::graph_impl::NodeIndex<u32>, dataflow::statistics::NodeStats>)> HashMap<(dataflow::domain::Index, usize), usize, core::hash::BuildHasherDefault<fnv::FnvHasher>> HashMap<(petgraph::graph_impl::NodeIndex<u32>, petgraph::graph_impl::NodeIndex<u32>), petgraph::graph_impl::NodeIndex<u32>> HashMap<alloc::string::String, ()> HashMap<alloc::string::String, controller::sql::query_graph::QueryGraphNode> HashMap<alloc::string::String, petgraph::graph_impl::NodeIndex<u32>> HashMap<alloc::string::String, usize> HashMap<alloc::vec::Vec<usize>, ()> HashMap<core::any::TypeId, alloc::boxed::Box<hyper::header::Header>> HashMap<core::any::TypeId, alloc::boxed::Box<hyper::header::HeaderFormat>> HashMap<dataflow::domain::Index, ()> HashMap<dataflow::domain::Index, i64> HashMap<nom_sql::column::Column, ()> HashMap<petgraph::graph_impl::NodeIndex<u32>, ()> HashMap<petgraph::graph_impl::NodeIndex<u32>, (alloc::vec::Vec<usize>, bool)> HashMap<petgraph::graph_impl::NodeIndex<u32>, alloc::vec::Vec<core::addressing::LocalNodeIndex>> HashMap<petgraph::graph_impl::NodeIndex<u32>, core::addressing::IndexPair> HashMap<petgraph::graph_impl::NodeIndex<u32>, dataflow::Sharding> HashMap<petgraph::graph_impl::NodeIndex<u32>, dataflow::statistics::NodeStats> HashMap<petgraph::graph_impl::NodeIndex<u32>, usize> HashMap<u64, (controller::sql::query_graph::QueryGraph, mir::query::MirQuery)>
The text was updated successfully, but these errors were encountered:
This would be particularly useful for futures, where all await functions actually get listed as std::future::from_generator::GenFuture<T>::poll().
std::future::from_generator::GenFuture<T>::poll()
Sorry, something went wrong.
(might be useful to others) Rustc has a flag under -Z to print every item from monomorphization collection: -Z print-mono-items=lazy
-Z print-mono-items=lazy
I think RUSTC_BOOTSTRAP=1 RUSTFLAGS="-Zsymbol-mangling-version=v0" cargo llvm-lines does this, learned from the one who knows everything.
RUSTC_BOOTSTRAP=1 RUSTFLAGS="-Zsymbol-mangling-version=v0" cargo llvm-lines
Since Rust 1.59 the above is now RUSTFLAGS="-Csymbol-mangling-version=v0" cargo llvm-lines.
RUSTFLAGS="-Csymbol-mangling-version=v0" cargo llvm-lines
No branches or pull requests
Basically this. For example the instantiations of HashMap::insert could be:
The text was updated successfully, but these errors were encountered: