blob: 8a64910a8d8573e5b128c1ef5fd83378b10bbb8f [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="A noncontiguous NFA implementation of Aho-Corasick."><meta name="keywords" content="rust, rustlang, rust-lang, NFA"><title>NFA in aho_corasick::nfa::noncontiguous - 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="sidebar-items.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 struct"><!--[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="../../../aho_corasick/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="../../../aho_corasick/index.html"><div class="logo-container"><img class="rust-logo" src="../../../rust-logo.svg" alt="logo"></div></a><h2 class="location"><a href="#">NFA</a></h2><div class="sidebar-elems"><section><h3><a href="#implementations">Methods</a></h3><ul class="block"><li><a href="#method.builder">builder</a></li><li><a href="#method.new">new</a></li></ul><h3><a href="#trait-implementations">Trait Implementations</a></h3><ul class="block"><li><a href="#impl-Automaton-for-NFA">Automaton</a></li><li><a href="#impl-Clone-for-NFA">Clone</a></li><li><a href="#impl-Debug-for-NFA">Debug</a></li></ul><h3><a href="#synthetic-implementations">Auto Trait Implementations</a></h3><ul class="block"><li><a href="#impl-RefUnwindSafe-for-NFA">RefUnwindSafe</a></li><li><a href="#impl-Send-for-NFA">Send</a></li><li><a href="#impl-Sync-for-NFA">Sync</a></li><li><a href="#impl-Unpin-for-NFA">Unpin</a></li><li><a href="#impl-UnwindSafe-for-NFA">UnwindSafe</a></li></ul><h3><a href="#blanket-implementations">Blanket Implementations</a></h3><ul class="block"><li><a href="#impl-Any-for-NFA">Any</a></li><li><a href="#impl-Borrow%3CT%3E-for-NFA">Borrow&lt;T&gt;</a></li><li><a href="#impl-BorrowMut%3CT%3E-for-NFA">BorrowMut&lt;T&gt;</a></li><li><a href="#impl-From%3CT%3E-for-NFA">From&lt;T&gt;</a></li><li><a href="#impl-Into%3CU%3E-for-NFA">Into&lt;U&gt;</a></li><li><a href="#impl-ToOwned-for-NFA">ToOwned</a></li><li><a href="#impl-TryFrom%3CU%3E-for-NFA">TryFrom&lt;U&gt;</a></li><li><a href="#impl-TryInto%3CU%3E-for-NFA">TryInto&lt;U&gt;</a></li></ul></section><h2><a href="index.html">In aho_corasick::nfa::noncontiguous</a></h2></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">Struct <a href="../../index.html">aho_corasick</a>::<wbr><a href="../index.html">nfa</a>::<wbr><a href="index.html">noncontiguous</a>::<wbr><a class="struct" href="#">NFA</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/aho_corasick/nfa/noncontiguous.rs.html#82-145">source</a> · <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class="inner">&#x2212;</span>]</a></span></div><div class="item-decl"><pre class="rust struct"><code>pub struct NFA { /* private fields */ }</code></pre></div><details class="rustdoc-toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>A noncontiguous NFA implementation of Aho-Corasick.</p>
<p>When possible, prefer using <a href="../../struct.AhoCorasick.html"><code>AhoCorasick</code></a> instead of
this type directly. Using an <code>NFA</code> directly is typically only necessary
when one needs access to the <a href="../../automaton/trait.Automaton.html" title="Automaton"><code>Automaton</code></a> trait implementation.</p>
<p>This NFA represents the “core” implementation of Aho-Corasick in this
crate. Namely, constructing this NFA involving building a trie and then
filling in the failure transitions between states, similar to what is
described in any standard textbook description of Aho-Corasick.</p>
<p>In order to minimize heap usage and to avoid additional construction costs,
this implementation represents the transitions of all states as distinct
sparse memory allocations. This is where it gets its name from. That is,
this NFA has no contiguous memory allocation for its transition table. Each
state gets its own allocation.</p>
<p>While the sparse representation keeps memory usage to somewhat reasonable
levels, it is still quite large and also results in somewhat mediocre
search performance. For this reason, it is almost always a good idea to
use a <a href="../contiguous/struct.NFA.html"><code>contiguous::NFA</code></a> instead. It is
marginally slower to build, but has higher throughput and can sometimes use
an order of magnitude less memory. The main reason to use a noncontiguous
NFA is when you need the fastest possible construction time, or when a
contiguous NFA does not have the desired capacity. (The total number of NFA
states it can have is fewer than a noncontiguous NFA.)</p>
<h2 id="example"><a href="#example">Example</a></h2>
<p>This example shows how to build an <code>NFA</code> directly and use it to execute
<a href="../../automaton/trait.Automaton.html#method.try_find" title="Automaton::try_find"><code>Automaton::try_find</code></a>:</p>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>aho_corasick::{
automaton::Automaton,
nfa::noncontiguous::NFA,
Input, Match,
};
<span class="kw">let </span>patterns = <span class="kw-2">&amp;</span>[<span class="string">&quot;b&quot;</span>, <span class="string">&quot;abc&quot;</span>, <span class="string">&quot;abcd&quot;</span>];
<span class="kw">let </span>haystack = <span class="string">&quot;abcd&quot;</span>;
<span class="kw">let </span>nfa = NFA::new(patterns).unwrap();
<span class="macro">assert_eq!</span>(
<span class="prelude-val">Some</span>(Match::must(<span class="number">0</span>, <span class="number">1</span>..<span class="number">2</span>)),
nfa.try_find(<span class="kw-2">&amp;</span>Input::new(haystack))<span class="question-mark">?</span>,
);</code></pre></div>
<p>It is also possible to implement your own version of <code>try_find</code>. See the
<a href="../../automaton/trait.Automaton.html" title="Automaton"><code>Automaton</code></a> documentation for an example.</p>
</div></details><h2 id="implementations" class="small-section-header">Implementations<a href="#implementations" class="anchor"></a></h2><div id="implementations-list"><details class="rustdoc-toggle implementors-toggle" open><summary><section id="impl-NFA" class="impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#147-167">source</a><a href="#impl-NFA" class="anchor"></a><h3 class="code-header">impl <a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><section id="method.new" class="method has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#152-158">source</a><h4 class="code-header">pub fn <a href="#method.new" class="fnname">new</a>&lt;I, P&gt;(patterns: I) -&gt; Result&lt;<a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a>, <a class="struct" href="../../struct.BuildError.html" title="struct aho_corasick::BuildError">BuildError</a>&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: IntoIterator&lt;Item = P&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;P: AsRef&lt;[u8]&gt;,</span></h4></section></summary><div class="docblock"><p>Create a new Aho-Corasick noncontiguous NFA using the default
configuration.</p>
<p>Use a <a href="struct.Builder.html" title="Builder"><code>Builder</code></a> if you want to change the configuration.</p>
</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.builder" class="method has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#164-166">source</a><h4 class="code-header">pub fn <a href="#method.builder" class="fnname">builder</a>() -&gt; <a class="struct" href="struct.Builder.html" title="struct aho_corasick::nfa::noncontiguous::Builder">Builder</a></h4></section></summary><div class="docblock"><p>A convenience method for returning a new Aho-Corasick noncontiguous NFA
builder.</p>
<p>This usually permits one to just import the <code>NFA</code> type.</p>
</div></details></div></details></div><h2 id="trait-implementations" class="small-section-header">Trait Implementations<a href="#trait-implementations" class="anchor"></a></h2><div id="trait-implementations-list"><details class="rustdoc-toggle implementors-toggle" open><summary><section id="impl-Automaton-for-NFA" class="impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#244-352">source</a><a href="#impl-Automaton-for-NFA" class="anchor"></a><h3 class="code-header">impl <a class="trait" href="../../automaton/trait.Automaton.html" title="trait aho_corasick::automaton::Automaton">Automaton</a> for <a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><section id="method.start_state" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#246-251">source</a><a href="#method.start_state" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.start_state" class="fnname">start_state</a>(&amp;self, anchored: <a class="enum" href="../../enum.Anchored.html" title="enum aho_corasick::Anchored">Anchored</a>) -&gt; Result&lt;<a class="struct" href="../../automaton/struct.StateID.html" title="struct aho_corasick::automaton::StateID">StateID</a>, <a class="struct" href="../../struct.MatchError.html" title="struct aho_corasick::MatchError">MatchError</a>&gt;</h4></section></summary><div class='docblock'>Returns the starting state for the given anchor mode. <a href="../../automaton/trait.Automaton.html#tymethod.start_state">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.next_state" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#254-280">source</a><a href="#method.next_state" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.next_state" class="fnname">next_state</a>(&amp;self, anchored: <a class="enum" href="../../enum.Anchored.html" title="enum aho_corasick::Anchored">Anchored</a>, sid: <a class="struct" href="../../automaton/struct.StateID.html" title="struct aho_corasick::automaton::StateID">StateID</a>, byte: u8) -&gt; <a class="struct" href="../../automaton/struct.StateID.html" title="struct aho_corasick::automaton::StateID">StateID</a></h4></section></summary><div class='docblock'>Performs a state transition from <code>sid</code> for <code>byte</code> and returns the next
state. <a href="../../automaton/trait.Automaton.html#tymethod.next_state">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.is_special" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#283-285">source</a><a href="#method.is_special" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.is_special" class="fnname">is_special</a>(&amp;self, sid: <a class="struct" href="../../automaton/struct.StateID.html" title="struct aho_corasick::automaton::StateID">StateID</a>) -&gt; bool</h4></section></summary><div class='docblock'>Returns true if the given ID represents a “special” state. A special
state is a dead, match or start state. <a href="../../automaton/trait.Automaton.html#tymethod.is_special">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.is_dead" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#288-290">source</a><a href="#method.is_dead" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.is_dead" class="fnname">is_dead</a>(&amp;self, sid: <a class="struct" href="../../automaton/struct.StateID.html" title="struct aho_corasick::automaton::StateID">StateID</a>) -&gt; bool</h4></section></summary><div class='docblock'>Returns true if the given ID represents a dead state. <a href="../../automaton/trait.Automaton.html#tymethod.is_dead">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.is_match" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#293-299">source</a><a href="#method.is_match" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.is_match" class="fnname">is_match</a>(&amp;self, sid: <a class="struct" href="../../automaton/struct.StateID.html" title="struct aho_corasick::automaton::StateID">StateID</a>) -&gt; bool</h4></section></summary><div class='docblock'>Returns true if the given ID represents a match state. <a href="../../automaton/trait.Automaton.html#tymethod.is_match">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.is_start" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#302-305">source</a><a href="#method.is_start" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.is_start" class="fnname">is_start</a>(&amp;self, sid: <a class="struct" href="../../automaton/struct.StateID.html" title="struct aho_corasick::automaton::StateID">StateID</a>) -&gt; bool</h4></section></summary><div class='docblock'>Returns true if the given ID represents a start state. <a href="../../automaton/trait.Automaton.html#tymethod.is_start">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.match_kind" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#308-310">source</a><a href="#method.match_kind" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.match_kind" class="fnname">match_kind</a>(&amp;self) -&gt; <a class="enum" href="../../enum.MatchKind.html" title="enum aho_corasick::MatchKind">MatchKind</a></h4></section></summary><div class='docblock'>Returns the match semantics that this automaton was built with.</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.patterns_len" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#313-315">source</a><a href="#method.patterns_len" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.patterns_len" class="fnname">patterns_len</a>(&amp;self) -&gt; usize</h4></section></summary><div class='docblock'>Returns the total number of patterns compiled into this automaton.</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.pattern_len" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#318-320">source</a><a href="#method.pattern_len" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.pattern_len" class="fnname">pattern_len</a>(&amp;self, pid: <a class="struct" href="../../struct.PatternID.html" title="struct aho_corasick::PatternID">PatternID</a>) -&gt; usize</h4></section></summary><div class='docblock'>Returns the length of the pattern for the given ID. <a href="../../automaton/trait.Automaton.html#tymethod.pattern_len">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.min_pattern_len" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#323-325">source</a><a href="#method.min_pattern_len" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.min_pattern_len" class="fnname">min_pattern_len</a>(&amp;self) -&gt; usize</h4></section></summary><div class='docblock'>Returns the length, in bytes, of the shortest pattern in this
automaton. <a href="../../automaton/trait.Automaton.html#tymethod.min_pattern_len">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.max_pattern_len" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#328-330">source</a><a href="#method.max_pattern_len" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.max_pattern_len" class="fnname">max_pattern_len</a>(&amp;self) -&gt; usize</h4></section></summary><div class='docblock'>Returns the length, in bytes, of the longest pattern in this automaton.</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.match_len" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#333-335">source</a><a href="#method.match_len" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.match_len" class="fnname">match_len</a>(&amp;self, sid: <a class="struct" href="../../automaton/struct.StateID.html" title="struct aho_corasick::automaton::StateID">StateID</a>) -&gt; usize</h4></section></summary><div class='docblock'>Returns the total number of matches for the given state ID. <a href="../../automaton/trait.Automaton.html#tymethod.match_len">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.match_pattern" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#338-340">source</a><a href="#method.match_pattern" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.match_pattern" class="fnname">match_pattern</a>(&amp;self, sid: <a class="struct" href="../../automaton/struct.StateID.html" title="struct aho_corasick::automaton::StateID">StateID</a>, index: usize) -&gt; <a class="struct" href="../../struct.PatternID.html" title="struct aho_corasick::PatternID">PatternID</a></h4></section></summary><div class='docblock'>Returns the pattern ID for the match state given by <code>sid</code> at the
<code>index</code> given. <a href="../../automaton/trait.Automaton.html#tymethod.match_pattern">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.memory_usage" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#343-346">source</a><a href="#method.memory_usage" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.memory_usage" class="fnname">memory_usage</a>(&amp;self) -&gt; usize</h4></section></summary><div class='docblock'>Returns the heap memory usage, in bytes, used by this automaton.</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.prefilter" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#349-351">source</a><a href="#method.prefilter" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#tymethod.prefilter" class="fnname">prefilter</a>(&amp;self) -&gt; Option&lt;&amp;<a class="struct" href="../../automaton/struct.Prefilter.html" title="struct aho_corasick::automaton::Prefilter">Prefilter</a>&gt;</h4></section></summary><div class='docblock'>Returns a prefilter, if available, that can be used to accelerate
searches for this automaton. <a href="../../automaton/trait.Automaton.html#tymethod.prefilter">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_find" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#354-359">source</a><a href="#method.try_find" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_find" class="fnname">try_find</a>(&amp;self, input: &amp;<a class="struct" href="../../struct.Input.html" title="struct aho_corasick::Input">Input</a>&lt;'_&gt;) -&gt; Result&lt;Option&lt;<a class="struct" href="../../struct.Match.html" title="struct aho_corasick::Match">Match</a>&gt;, <a class="struct" href="../../struct.MatchError.html" title="struct aho_corasick::MatchError">MatchError</a>&gt;</h4></section></summary><div class='docblock'>Executes a non-overlapping search with this automaton using the given
configuration. <a href="../../automaton/trait.Automaton.html#method.try_find">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_find_overlapping" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#367-373">source</a><a href="#method.try_find_overlapping" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_find_overlapping" class="fnname">try_find_overlapping</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self,<br>&nbsp;&nbsp;&nbsp;&nbsp;input: &amp;<a class="struct" href="../../struct.Input.html" title="struct aho_corasick::Input">Input</a>&lt;'_&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;state: &amp;mut <a class="struct" href="../../automaton/struct.OverlappingState.html" title="struct aho_corasick::automaton::OverlappingState">OverlappingState</a><br>) -&gt; Result&lt;(), <a class="struct" href="../../struct.MatchError.html" title="struct aho_corasick::MatchError">MatchError</a>&gt;</h4></section></summary><div class='docblock'>Executes a overlapping search with this automaton using the given
configuration. <a href="../../automaton/trait.Automaton.html#method.try_find_overlapping">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_find_iter" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#381-389">source</a><a href="#method.try_find_iter" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_find_iter" class="fnname">try_find_iter</a>&lt;'a, 'h&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;'a self,<br>&nbsp;&nbsp;&nbsp;&nbsp;input: <a class="struct" href="../../struct.Input.html" title="struct aho_corasick::Input">Input</a>&lt;'h&gt;<br>) -&gt; Result&lt;<a class="struct" href="../../automaton/struct.FindIter.html" title="struct aho_corasick::automaton::FindIter">FindIter</a>&lt;'a, 'h, Self&gt;, <a class="struct" href="../../struct.MatchError.html" title="struct aho_corasick::MatchError">MatchError</a>&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: Sized,</span></h4></section></summary><div class='docblock'>Returns an iterator of non-overlapping matches with this automaton
using the given configuration. <a href="../../automaton/trait.Automaton.html#method.try_find_iter">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_find_overlapping_iter" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#397-423">source</a><a href="#method.try_find_overlapping_iter" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_find_overlapping_iter" class="fnname">try_find_overlapping_iter</a>&lt;'a, 'h&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;'a self,<br>&nbsp;&nbsp;&nbsp;&nbsp;input: <a class="struct" href="../../struct.Input.html" title="struct aho_corasick::Input">Input</a>&lt;'h&gt;<br>) -&gt; Result&lt;<a class="struct" href="../../automaton/struct.FindOverlappingIter.html" title="struct aho_corasick::automaton::FindOverlappingIter">FindOverlappingIter</a>&lt;'a, 'h, Self&gt;, <a class="struct" href="../../struct.MatchError.html" title="struct aho_corasick::MatchError">MatchError</a>&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: Sized,</span></h4></section></summary><div class='docblock'>Returns an iterator of overlapping matches with this automaton
using the given configuration. <a href="../../automaton/trait.Automaton.html#method.try_find_overlapping_iter">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_replace_all" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#433-454">source</a><a href="#method.try_replace_all" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_replace_all" class="fnname">try_replace_all</a>&lt;B&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self,<br>&nbsp;&nbsp;&nbsp;&nbsp;haystack: &amp;str,<br>&nbsp;&nbsp;&nbsp;&nbsp;replace_with: &amp;[B]<br>) -&gt; Result&lt;String, <a class="struct" href="../../struct.MatchError.html" title="struct aho_corasick::MatchError">MatchError</a>&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: Sized,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: AsRef&lt;str&gt;,</span></h4></section></summary><div class='docblock'>Replaces all non-overlapping matches in <code>haystack</code> with
strings from <code>replace_with</code> depending on the pattern that
matched. The <code>replace_with</code> slice must have length equal to
<code>Automaton::patterns_len</code>. <a href="../../automaton/trait.Automaton.html#method.try_replace_all">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_replace_all_bytes" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#464-485">source</a><a href="#method.try_replace_all_bytes" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_replace_all_bytes" class="fnname">try_replace_all_bytes</a>&lt;B&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self,<br>&nbsp;&nbsp;&nbsp;&nbsp;haystack: &amp;[u8],<br>&nbsp;&nbsp;&nbsp;&nbsp;replace_with: &amp;[B]<br>) -&gt; Result&lt;Vec&lt;u8&gt;, <a class="struct" href="../../struct.MatchError.html" title="struct aho_corasick::MatchError">MatchError</a>&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: Sized,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: AsRef&lt;[u8]&gt;,</span></h4></section></summary><div class='docblock'>Replaces all non-overlapping matches in <code>haystack</code> with
strings from <code>replace_with</code> depending on the pattern that
matched. The <code>replace_with</code> slice must have length equal to
<code>Automaton::patterns_len</code>. <a href="../../automaton/trait.Automaton.html#method.try_replace_all_bytes">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_replace_all_with" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#493-522">source</a><a href="#method.try_replace_all_with" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_replace_all_with" class="fnname">try_replace_all_with</a>&lt;F&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self,<br>&nbsp;&nbsp;&nbsp;&nbsp;haystack: &amp;str,<br>&nbsp;&nbsp;&nbsp;&nbsp;dst: &amp;mut String,<br>&nbsp;&nbsp;&nbsp;&nbsp;replace_with: F<br>) -&gt; Result&lt;(), <a class="struct" href="../../struct.MatchError.html" title="struct aho_corasick::MatchError">MatchError</a>&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: Sized,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&amp;<a class="struct" href="../../struct.Match.html" title="struct aho_corasick::Match">Match</a>, &amp;str, &amp;mut String) -&gt; bool,</span></h4></section></summary><div class='docblock'>Replaces all non-overlapping matches in <code>haystack</code> by calling the
<code>replace_with</code> closure given. <a href="../../automaton/trait.Automaton.html#method.try_replace_all_with">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_replace_all_with_bytes" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#530-550">source</a><a href="#method.try_replace_all_with_bytes" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_replace_all_with_bytes" class="fnname">try_replace_all_with_bytes</a>&lt;F&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self,<br>&nbsp;&nbsp;&nbsp;&nbsp;haystack: &amp;[u8],<br>&nbsp;&nbsp;&nbsp;&nbsp;dst: &amp;mut Vec&lt;u8&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;replace_with: F<br>) -&gt; Result&lt;(), <a class="struct" href="../../struct.MatchError.html" title="struct aho_corasick::MatchError">MatchError</a>&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: Sized,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&amp;<a class="struct" href="../../struct.Match.html" title="struct aho_corasick::Match">Match</a>, &amp;[u8], &amp;mut Vec&lt;u8&gt;) -&gt; bool,</span></h4></section></summary><div class='docblock'>Replaces all non-overlapping matches in <code>haystack</code> by calling the
<code>replace_with</code> closure given. <a href="../../automaton/trait.Automaton.html#method.try_replace_all_with_bytes">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_stream_find_iter" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#559-567">source</a><a href="#method.try_stream_find_iter" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_stream_find_iter" class="fnname">try_stream_find_iter</a>&lt;'a, R:&nbsp;Read&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;'a self,<br>&nbsp;&nbsp;&nbsp;&nbsp;rdr: R<br>) -&gt; Result&lt;<a class="struct" href="../../automaton/struct.StreamFindIter.html" title="struct aho_corasick::automaton::StreamFindIter">StreamFindIter</a>&lt;'a, Self, R&gt;, <a class="struct" href="../../struct.MatchError.html" title="struct aho_corasick::MatchError">MatchError</a>&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: Sized,</span></h4></section></summary><div class='docblock'>Returns an iterator of non-overlapping matches with this automaton
from the stream given. <a href="../../automaton/trait.Automaton.html#method.try_stream_find_iter">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_stream_replace_all" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#578-599">source</a><a href="#method.try_stream_replace_all" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_stream_replace_all" class="fnname">try_stream_replace_all</a>&lt;R, W, B&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self,<br>&nbsp;&nbsp;&nbsp;&nbsp;rdr: R,<br>&nbsp;&nbsp;&nbsp;&nbsp;wtr: W,<br>&nbsp;&nbsp;&nbsp;&nbsp;replace_with: &amp;[B]<br>) -&gt; Result&lt;()&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: Sized,<br>&nbsp;&nbsp;&nbsp;&nbsp;R: Read,<br>&nbsp;&nbsp;&nbsp;&nbsp;W: Write,<br>&nbsp;&nbsp;&nbsp;&nbsp;B: AsRef&lt;[u8]&gt;,</span></h4></section></summary><div class='docblock'>Replaces all non-overlapping matches in <code>rdr</code> with strings from
<code>replace_with</code> depending on the pattern that matched, and writes the
result to <code>wtr</code>. The <code>replace_with</code> slice must have length equal to
<code>Automaton::patterns_len</code>. <a href="../../automaton/trait.Automaton.html#method.try_stream_replace_all">Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_stream_replace_all_with" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/automaton.rs.html#608-636">source</a><a href="#method.try_stream_replace_all_with" class="anchor"></a><h4 class="code-header">fn <a href="../../automaton/trait.Automaton.html#method.try_stream_replace_all_with" class="fnname">try_stream_replace_all_with</a>&lt;R, W, F&gt;(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self,<br>&nbsp;&nbsp;&nbsp;&nbsp;rdr: R,<br>&nbsp;&nbsp;&nbsp;&nbsp;wtr: W,<br>&nbsp;&nbsp;&nbsp;&nbsp;replace_with: F<br>) -&gt; Result&lt;()&gt;<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: Sized,<br>&nbsp;&nbsp;&nbsp;&nbsp;R: Read,<br>&nbsp;&nbsp;&nbsp;&nbsp;W: Write,<br>&nbsp;&nbsp;&nbsp;&nbsp;F: FnMut(&amp;<a class="struct" href="../../struct.Match.html" title="struct aho_corasick::Match">Match</a>, &amp;[u8], &amp;mut W) -&gt; Result&lt;()&gt;,</span></h4></section></summary><div class='docblock'>Replaces all non-overlapping matches in <code>rdr</code> by calling the
<code>replace_with</code> closure given and writing the result to <code>wtr</code>. <a href="../../automaton/trait.Automaton.html#method.try_stream_replace_all_with">Read more</a></div></details></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><section id="impl-Clone-for-NFA" class="impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#81">source</a><a href="#impl-Clone-for-NFA" class="anchor"></a><h3 class="code-header">impl Clone for <a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><section id="method.clone" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#81">source</a><a href="#method.clone" class="anchor"></a><h4 class="code-header">fn <a class="fnname">clone</a>(&amp;self) -&gt; <a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a></h4></section></summary><div class='docblock'>Returns a copy of the value. <a>Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.clone_from" class="method trait-impl has-srclink"><span class="since rightside" title="Stable since Rust version 1.0.0">1.0.0</span><a href="#method.clone_from" class="anchor"></a><h4 class="code-header">const fn <a class="fnname">clone_from</a>(&amp;mut self, source: &amp;Self)</h4></section></summary><div class='docblock'>Performs copy-assignment from <code>source</code>. <a>Read more</a></div></details></div></details><details class="rustdoc-toggle implementors-toggle" open><summary><section id="impl-Debug-for-NFA" class="impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#1269-1311">source</a><a href="#impl-Debug-for-NFA" class="anchor"></a><h3 class="code-header">impl Debug for <a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><section id="method.fmt" class="method trait-impl has-srclink"><a class="srclink rightside" href="../../../src/aho_corasick/nfa/noncontiguous.rs.html#1270-1310">source</a><a href="#method.fmt" class="anchor"></a><h4 class="code-header">fn <a class="fnname">fmt</a>(&amp;self, f: &amp;mut Formatter&lt;'_&gt;) -&gt; Result</h4></section></summary><div class='docblock'>Formats the value using the given formatter. <a>Read more</a></div></details></div></details></div><h2 id="synthetic-implementations" class="small-section-header">Auto Trait Implementations<a href="#synthetic-implementations" class="anchor"></a></h2><div id="synthetic-implementations-list"><section id="impl-RefUnwindSafe-for-NFA" class="impl has-srclink"><a href="#impl-RefUnwindSafe-for-NFA" class="anchor"></a><h3 class="code-header">impl RefUnwindSafe for <a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a></h3></section><section id="impl-Send-for-NFA" class="impl has-srclink"><a href="#impl-Send-for-NFA" class="anchor"></a><h3 class="code-header">impl Send for <a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a></h3></section><section id="impl-Sync-for-NFA" class="impl has-srclink"><a href="#impl-Sync-for-NFA" class="anchor"></a><h3 class="code-header">impl Sync for <a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a></h3></section><section id="impl-Unpin-for-NFA" class="impl has-srclink"><a href="#impl-Unpin-for-NFA" class="anchor"></a><h3 class="code-header">impl Unpin for <a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a></h3></section><section id="impl-UnwindSafe-for-NFA" class="impl has-srclink"><a href="#impl-UnwindSafe-for-NFA" class="anchor"></a><h3 class="code-header">impl UnwindSafe for <a class="struct" href="struct.NFA.html" title="struct aho_corasick::nfa::noncontiguous::NFA">NFA</a></h3></section></div><h2 id="blanket-implementations" class="small-section-header">Blanket Implementations<a href="#blanket-implementations" class="anchor"></a></h2><div id="blanket-implementations-list"><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Any-for-NFA" class="impl has-srclink"><a href="#impl-Any-for-NFA" class="anchor"></a><h3 class="code-header">impl&lt;T&gt; Any for T<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: 'static + ?Sized,</span></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><section id="method.type_id" class="method trait-impl has-srclink"><a href="#method.type_id" class="anchor"></a><h4 class="code-header">fn <a class="fnname">type_id</a>(&amp;self) -&gt; TypeId</h4></section></summary><div class='docblock'>Gets the <code>TypeId</code> of <code>self</code>. <a>Read more</a></div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Borrow%3CT%3E-for-NFA" class="impl has-srclink"><a href="#impl-Borrow%3CT%3E-for-NFA" class="anchor"></a><h3 class="code-header">impl&lt;T&gt; Borrow&lt;T&gt; for T<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: ?Sized,</span></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><section id="method.borrow" class="method trait-impl has-srclink"><span class="since rightside" title="const unstable">const: <a href="https://github.com/rust-lang/rust/issues/91522" title="Tracking issue for const_borrow">unstable</a></span><a href="#method.borrow" class="anchor"></a><h4 class="code-header">fn <a class="fnname">borrow</a>(&amp;self) -&gt; &amp;T</h4></section></summary><div class='docblock'>Immutably borrows from an owned value. <a>Read more</a></div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-BorrowMut%3CT%3E-for-NFA" class="impl has-srclink"><a href="#impl-BorrowMut%3CT%3E-for-NFA" class="anchor"></a><h3 class="code-header">impl&lt;T&gt; BorrowMut&lt;T&gt; for T<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: ?Sized,</span></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><section id="method.borrow_mut" class="method trait-impl has-srclink"><span class="since rightside" title="const unstable">const: <a href="https://github.com/rust-lang/rust/issues/91522" title="Tracking issue for const_borrow">unstable</a></span><a href="#method.borrow_mut" class="anchor"></a><h4 class="code-header">fn <a class="fnname">borrow_mut</a>(&amp;mut self) -&gt; &amp;mut T</h4></section></summary><div class='docblock'>Mutably borrows from an owned value. <a>Read more</a></div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-From%3CT%3E-for-NFA" class="impl has-srclink"><a href="#impl-From%3CT%3E-for-NFA" class="anchor"></a><h3 class="code-header">impl&lt;T&gt; From&lt;T&gt; for T</h3></section></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><section id="method.from" class="method trait-impl has-srclink"><span class="since rightside" title="const unstable">const: <a href="https://github.com/rust-lang/rust/issues/88674" title="Tracking issue for const_convert">unstable</a></span><a href="#method.from" class="anchor"></a><h4 class="code-header">fn <a class="fnname">from</a>(t: T) -&gt; T</h4></section></summary><div class="docblock"><p>Returns the argument unchanged.</p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-Into%3CU%3E-for-NFA" class="impl has-srclink"><a href="#impl-Into%3CU%3E-for-NFA" class="anchor"></a><h3 class="code-header">impl&lt;T, U&gt; Into&lt;U&gt; for T<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: From&lt;T&gt;,</span></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle method-toggle" open><summary><section id="method.into" class="method trait-impl has-srclink"><span class="since rightside" title="const unstable">const: <a href="https://github.com/rust-lang/rust/issues/88674" title="Tracking issue for const_convert">unstable</a></span><a href="#method.into" class="anchor"></a><h4 class="code-header">fn <a class="fnname">into</a>(self) -&gt; U</h4></section></summary><div class="docblock"><p>Calls <code>U::from(self)</code>.</p>
<p>That is, this conversion is whatever the implementation of
<code>[From]&lt;T&gt; for U</code> chooses to do.</p>
</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-ToOwned-for-NFA" class="impl has-srclink"><a href="#impl-ToOwned-for-NFA" class="anchor"></a><h3 class="code-header">impl&lt;T&gt; ToOwned for T<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: Clone,</span></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle" open><summary><section id="associatedtype.Owned" class="associatedtype trait-impl has-srclink"><a href="#associatedtype.Owned" class="anchor"></a><h4 class="code-header">type <a class="associatedtype">Owned</a> = T</h4></section></summary><div class='docblock'>The resulting type after obtaining ownership.</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.to_owned" class="method trait-impl has-srclink"><a href="#method.to_owned" class="anchor"></a><h4 class="code-header">fn <a class="fnname">to_owned</a>(&amp;self) -&gt; T</h4></section></summary><div class='docblock'>Creates owned data from borrowed data, usually by cloning. <a>Read more</a></div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.clone_into" class="method trait-impl has-srclink"><a href="#method.clone_into" class="anchor"></a><h4 class="code-header">fn <a class="fnname">clone_into</a>(&amp;self, target: &amp;mut T)</h4></section></summary><div class='docblock'>Uses borrowed data to replace owned data, usually by cloning. <a>Read more</a></div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-TryFrom%3CU%3E-for-NFA" class="impl has-srclink"><a href="#impl-TryFrom%3CU%3E-for-NFA" class="anchor"></a><h3 class="code-header">impl&lt;T, U&gt; TryFrom&lt;U&gt; for T<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: Into&lt;T&gt;,</span></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle" open><summary><section id="associatedtype.Error-1" class="associatedtype trait-impl has-srclink"><a href="#associatedtype.Error-1" class="anchor"></a><h4 class="code-header">type <a class="associatedtype">Error</a> = Infallible</h4></section></summary><div class='docblock'>The type returned in the event of a conversion error.</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_from" class="method trait-impl has-srclink"><span class="since rightside" title="const unstable">const: <a href="https://github.com/rust-lang/rust/issues/88674" title="Tracking issue for const_convert">unstable</a></span><a href="#method.try_from" class="anchor"></a><h4 class="code-header">fn <a class="fnname">try_from</a>(value: U) -&gt; Result&lt;T, &lt;T as TryFrom&lt;U&gt;&gt;::Error&gt;</h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details><details class="rustdoc-toggle implementors-toggle"><summary><section id="impl-TryInto%3CU%3E-for-NFA" class="impl has-srclink"><a href="#impl-TryInto%3CU%3E-for-NFA" class="anchor"></a><h3 class="code-header">impl&lt;T, U&gt; TryInto&lt;U&gt; for T<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: TryFrom&lt;T&gt;,</span></h3></section></summary><div class="impl-items"><details class="rustdoc-toggle" open><summary><section id="associatedtype.Error" class="associatedtype trait-impl has-srclink"><a href="#associatedtype.Error" class="anchor"></a><h4 class="code-header">type <a class="associatedtype">Error</a> = &lt;U as TryFrom&lt;T&gt;&gt;::Error</h4></section></summary><div class='docblock'>The type returned in the event of a conversion error.</div></details><details class="rustdoc-toggle method-toggle" open><summary><section id="method.try_into" class="method trait-impl has-srclink"><span class="since rightside" title="const unstable">const: <a href="https://github.com/rust-lang/rust/issues/88674" title="Tracking issue for const_convert">unstable</a></span><a href="#method.try_into" class="anchor"></a><h4 class="code-header">fn <a class="fnname">try_into</a>(self) -&gt; Result&lt;U, &lt;U as TryFrom&lt;T&gt;&gt;::Error&gt;</h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details></div></section></div></main><div id="rustdoc-vars" data-root-path="../../../" data-current-crate="aho_corasick" data-themes="ayu,dark,light" data-resource-suffix="" data-rustdoc-version="1.66.0-nightly (5c8bff74b 2022-10-21)" ></div></body></html>