blob: 7c4f26f5610683e125d7e06cc2710b0672d1c5b4 [file] [log] [blame]
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Facility to emit dummy implementations (or whatever) in case an error happen."><meta name="keywords" content="rust, rustlang, rust-lang, dummy"><title>proc_macro_error::dummy - Rust</title><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceSerif4-Regular.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../FiraSans-Regular.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../FiraSans-Medium.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceCodePro-Regular.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceSerif4-Bold.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../SourceCodePro-Semibold.ttf.woff2"><link rel="stylesheet" href="../../normalize.css"><link rel="stylesheet" href="../../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" href="../../ayu.css" disabled><link rel="stylesheet" href="../../dark.css" disabled><link rel="stylesheet" href="../../light.css" id="themeStyle"><script id="default-settings" ></script><script src="../../storage.js"></script><script defer src="../../main.js"></script><noscript><link rel="stylesheet" href="../../noscript.css"></noscript><link rel="alternate icon" type="image/png" href="../../favicon-16x16.png"><link rel="alternate icon" type="image/png" href="../../favicon-32x32.png"><link rel="icon" type="image/svg+xml" href="../../favicon.svg"></head><body class="rustdoc mod"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle">&#9776;</button><a class="sidebar-logo" href="../../proc_macro_error/index.html"><div class="logo-container"><img class="rust-logo" src="../../rust-logo.svg" alt="logo"></div></a><h2></h2></nav><nav class="sidebar"><a class="sidebar-logo" href="../../proc_macro_error/index.html"><div class="logo-container"><img class="rust-logo" src="../../rust-logo.svg" alt="logo"></div></a><h2 class="location"><a href="#">Module dummy</a></h2><div class="sidebar-elems"><section><ul class="block"><li><a href="#functions">Functions</a></li></ul></section></div></nav><main><div class="width-limiter"><nav class="sub"><form class="search-form"><div class="search-container"><span></span><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"><div id="help-button" title="help" tabindex="-1"><a href="../../help.html">?</a></div><div id="settings-menu" tabindex="-1"><a href="../../settings.html" title="settings"><img width="22" height="22" alt="Change settings" src="../../wheel.svg"></a></div></div></form></nav><section id="main-content" class="content"><div class="main-heading"><h1 class="fqn">Module <a href="../index.html">proc_macro_error</a>::<wbr><a class="mod" href="#">dummy</a><button id="copy-path" onclick="copy_path(this)" title="Copy item path to clipboard"><img src="../../clipboard.svg" width="19" height="18" alt="Copy item path"></button></h1><span class="out-of-band"><a class="srclink" href="../../src/proc_macro_error/dummy.rs.html#1-150">source</a> · <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class="inner">&#x2212;</span>]</a></span></div><details class="rustdoc-toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>Facility to emit dummy implementations (or whatever) in case
an error happen.</p>
<p><code>compile_error!</code> does not abort a compilation right away. This means
<code>rustc</code> doesn’t just show you the error and abort, it carries on the
compilation process looking for other errors to report.</p>
<p>Let’s consider an example:</p>
<div class="example-wrap ignore"><div class='tooltip'></div><pre class="rust rust-example-rendered"><code><span class="kw">use </span>proc_macro::TokenStream;
<span class="kw">use </span>proc_macro_error::<span class="kw-2">*</span>;
<span class="kw">trait </span>MyTrait {
<span class="kw">fn </span>do_thing();
}
<span class="comment">// this proc macro is supposed to generate MyTrait impl
</span><span class="attribute">#[proc_macro_derive(MyTrait)]
#[proc_macro_error]
</span><span class="kw">fn </span>example(input: TokenStream) -&gt; TokenStream {
<span class="comment">// somewhere deep inside
</span><span class="macro">abort!</span>(span, <span class="string">&quot;something&#39;s wrong&quot;</span>);
<span class="comment">// this implementation will be generated if no error happened
</span><span class="macro">quote! </span>{
<span class="kw">impl </span>MyTrait <span class="kw">for </span>#name {
<span class="kw">fn </span>do_thing() {<span class="comment">/* whatever */</span>}
}
}
}
<span class="comment">// ================
// in main.rs
// this derive triggers an error
</span><span class="attribute">#[derive(MyTrait)] </span><span class="comment">// first BOOM!
</span><span class="kw">struct </span>Foo;
<span class="kw">fn </span>main() {
Foo::do_thing(); <span class="comment">// second BOOM!
</span>}</code></pre></div>
<p>The problem is: the generated token stream contains only <code>compile_error!</code>
invocation, the impl was not generated. That means user will see two compilation
errors:</p>
<div class="example-wrap"><pre class="language-text"><code>error: something&#39;s wrong
--&gt; $DIR/probe.rs:9:10
|
9 |#[proc_macro_derive(MyTrait)]
| ^^^^^^^
error[E0599]: no function or associated item named `do_thing` found for type `Foo` in the current scope
--&gt; src\main.rs:3:10
|
1 | struct Foo;
| ----------- function or associated item `do_thing` not found for this
2 | fn main() {
3 | Foo::do_thing(); // second BOOM!
| ^^^^^^^^ function or associated item not found in `Foo`</code></pre></div>
<p>But the second error is meaningless! We definitely need to fix this.</p>
<p>Most used approach in cases like this is “dummy implementation” -
omit <code>impl MyTrait for #name</code> and fill functions bodies with <code>unimplemented!()</code>.</p>
<p>This is how you do it:</p>
<div class="example-wrap ignore"><div class='tooltip'></div><pre class="rust rust-example-rendered"><code><span class="kw">use </span>proc_macro::TokenStream;
<span class="kw">use </span>proc_macro_error::<span class="kw-2">*</span>;
<span class="kw">trait </span>MyTrait {
<span class="kw">fn </span>do_thing();
}
<span class="comment">// this proc macro is supposed to generate MyTrait impl
</span><span class="attribute">#[proc_macro_derive(MyTrait)]
#[proc_macro_error]
</span><span class="kw">fn </span>example(input: TokenStream) -&gt; TokenStream {
<span class="comment">// first of all - we set a dummy impl which will be appended to
// `compile_error!` invocations in case a trigger does happen
</span>set_dummy(<span class="macro">quote! </span>{
<span class="kw">impl </span>MyTrait <span class="kw">for </span>#name {
<span class="kw">fn </span>do_thing() { <span class="macro">unimplemented!</span>() }
}
});
<span class="comment">// somewhere deep inside
</span><span class="macro">abort!</span>(span, <span class="string">&quot;something&#39;s wrong&quot;</span>);
<span class="comment">// this implementation will be generated if no error happened
</span><span class="macro">quote! </span>{
<span class="kw">impl </span>MyTrait <span class="kw">for </span>#name {
<span class="kw">fn </span>do_thing() {<span class="comment">/* whatever */</span>}
}
}
}
<span class="comment">// ================
// in main.rs
// this derive triggers an error
</span><span class="attribute">#[derive(MyTrait)] </span><span class="comment">// first BOOM!
</span><span class="kw">struct </span>Foo;
<span class="kw">fn </span>main() {
Foo::do_thing(); <span class="comment">// no more errors!
</span>}</code></pre></div>
</div></details><h2 id="functions" class="small-section-header"><a href="#functions">Functions</a></h2><div class="item-table"><div class="item-row"><div class="item-left module-item"><a class="fn" href="fn.append_dummy.html" title="proc_macro_error::dummy::append_dummy fn">append_dummy</a></div><div class="item-right docblock-short">Same as <a href="fn.set_dummy.html" title="set_dummy"><code>set_dummy</code></a> but, instead of resetting, appends tokens to the
existing dummy (if any). Behaves as <code>set_dummy</code> if no dummy is present.</div></div><div class="item-row"><div class="item-left module-item"><a class="fn" href="fn.set_dummy.html" title="proc_macro_error::dummy::set_dummy fn">set_dummy</a></div><div class="item-right docblock-short">Sets dummy token stream which will be appended to <code>compile_error!(msg);...</code>
invocations in case you’ll emit any errors.</div></div></div></section></div></main><div id="rustdoc-vars" data-root-path="../../" data-current-crate="proc_macro_error" data-themes="ayu,dark,light" data-resource-suffix="" data-rustdoc-version="1.66.0-nightly (5c8bff74b 2022-10-21)" ></div></body></html>