We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d5c669 commit 2e515d0Copy full SHA for 2e515d0
crates/rust-analyzer/src/handlers/request.rs
@@ -1692,7 +1692,7 @@ pub(crate) fn handle_move_item(
1692
pub(crate) fn handle_view_recursive_memory_layout(
1693
snap: GlobalStateSnapshot,
1694
params: lsp_ext::ViewRecursiveMemoryLayoutParams,
1695
-) -> Result<Option<lsp_ext::RecursiveMemoryLayout>> {
+) -> anyhow::Result<Option<lsp_ext::RecursiveMemoryLayout>> {
1696
let _p = profile::span("view_recursive_memory_layout");
1697
let file_id = from_proto::file_id(&snap, ¶ms.text_document.uri)?;
1698
let line_index = snap.file_line_index(file_id)?;
0 commit comments