rust-meth 0.2.0

Discover methods available on any Rust type with fuzzy filtering, inline documentation, interactive selection, and go-to-definition into standard library source code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Rust method explorer — queries LSP completions and definitions
//! for any Rust type, including third-party crates.

#![deny(missing_docs)]

/// Orchestrates the full LSP session
pub mod analyzer;
pub(crate) mod lsp;
pub(crate) mod probe;

pub use lsp::LspTransport;
pub use probe::Probe;