trait.Num.html 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="generator" content="rustdoc">
  7. <meta name="description" content="API documentation for the Rust `Num` trait in crate `num`.">
  8. <meta name="keywords" content="rust, rustlang, rust-lang, Num">
  9. <title>num::Num - Rust</title>
  10. <link rel="stylesheet" type="text/css" href="../normalize.css">
  11. <link rel="stylesheet" type="text/css" href="../rustdoc.css" id="mainThemeStyle">
  12. <link rel="stylesheet" type="text/css" href="../dark.css">
  13. <link rel="stylesheet" type="text/css" href="../main.css" id="themeStyle">
  14. <script src="../storage.js"></script>
  15. </head>
  16. <body class="rustdoc trait">
  17. <!--[if lte IE 8]>
  18. <div class="warning">
  19. This old browser is unsupported and will most likely display funky
  20. things.
  21. </div>
  22. <![endif]-->
  23. <nav class="sidebar">
  24. <div class="sidebar-menu">&#9776;</div>
  25. <p class='location'>Trait Num</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#associated-types">Associated Types</a><div class="sidebar-links"><a href="#associatedtype.FromStrRadixErr">FromStrRadixErr</a></div><a class="sidebar-title" href="#required-methods">Required Methods</a><div class="sidebar-links"><a href="#tymethod.from_str_radix">from_str_radix</a></div><a class="sidebar-title" href="#foreign-impls">Implementations on Foreign Types</a><div class="sidebar-links"><a href="#impl-Num">i32</a><a href="#impl-Num">i8</a><a href="#impl-Num">Wrapping&lt;T&gt;</a><a href="#impl-Num">u8</a><a href="#impl-Num">isize</a><a href="#impl-Num">f32</a><a href="#impl-Num">u64</a><a href="#impl-Num">usize</a><a href="#impl-Num">u32</a><a href="#impl-Num">f64</a><a href="#impl-Num">i16</a><a href="#impl-Num">u16</a><a href="#impl-Num">i64</a><a href="#impl-Num">Ratio&lt;T&gt;</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='index.html'>num</a></p><script>window.sidebarCurrent = {name: 'Num', ty: 'trait', relpath: ''};</script><script defer src="sidebar-items.js"></script></div>
  26. </nav>
  27. <div class="theme-picker">
  28. <button id="theme-picker" aria-label="Pick another theme!">
  29. <img src="../brush.svg" width="18" alt="Pick another theme!">
  30. </button>
  31. <div id="theme-choices"></div>
  32. </div>
  33. <script src="../theme.js"></script>
  34. <nav class="sub">
  35. <form class="search-form js-only">
  36. <div class="search-container">
  37. <input class="search-input" name="search"
  38. autocomplete="off"
  39. placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
  40. type="search">
  41. </div>
  42. </form>
  43. </nav>
  44. <section id='main' class="content">
  45. <h1 class='fqn'><span class='in-band'>Trait <a href='index.html'>num</a>::<wbr><a class="trait" href=''>Num</a></span><span class='out-of-band'><span id='render-detail'>
  46. <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
  47. [<span class='inner'>&#x2212;</span>]
  48. </a>
  49. </span><a class='srclink' href='../src/num_traits/lib.rs.html#61-79' title='goto source code'>[src]</a></span></h1>
  50. <pre class='rust trait'>pub trait Num: <a class="trait" href="../num/trait.Zero.html" title="trait num::Zero">Zero</a> + <a class="trait" href="../num/trait.One.html" title="trait num::One">One</a> + <a class="trait" href="../num_traits/trait.NumOps.html" title="trait num_traits::NumOps">NumOps</a>&lt;Self, Self&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>&lt;Self&gt; {
  51. type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a>;
  52. fn <a href='#tymethod.from_str_radix' class='fnname'>from_str_radix</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;str: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br>&nbsp;&nbsp;&nbsp;&nbsp;) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>&gt;;
  53. }</pre><div class='docblock'><p>The base trait for numeric types, covering <code>0</code> and <code>1</code> values,
  54. comparisons, basic numeric operations, and string conversion.</p>
  55. </div>
  56. <h2 id='associated-types' class='small-section-header'>
  57. Associated Types<a href='#associated-types' class='anchor'></a>
  58. </h2>
  59. <div class='methods'>
  60. <h3 id='associatedtype.FromStrRadixErr' class='method'><span id='FromStrRadixErr.t' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a></code></span></h3></div>
  61. <h2 id='required-methods' class='small-section-header'>
  62. Required Methods<a href='#required-methods' class='anchor'></a>
  63. </h2>
  64. <div class='methods'>
  65. <h3 id='tymethod.from_str_radix' class='method'><span id='from_str_radix.v' class='invisible'><code>fn <a href='#tymethod.from_str_radix' class='fnname'>from_str_radix</a>(str: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;Self, Self::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>&gt;</code></span></h3><div class='docblock'><p>Convert from a string and radix &lt;= 36.</p>
  66. <h1 id="examples" class="section-header"><a href="#examples">Examples</a></h1>
  67. <pre class="rust rust-example-rendered">
  68. <span class="kw">use</span> <span class="ident">num_traits</span>::<span class="ident">Num</span>;
  69. <span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="op">&lt;</span><span class="ident">i32</span> <span class="kw">as</span> <span class="ident">Num</span><span class="op">&gt;</span>::<span class="ident">from_str_radix</span>(<span class="string">&quot;27&quot;</span>, <span class="number">10</span>);
  70. <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">result</span>, <span class="prelude-val">Ok</span>(<span class="number">27</span>));
  71. <span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="op">&lt;</span><span class="ident">i32</span> <span class="kw">as</span> <span class="ident">Num</span><span class="op">&gt;</span>::<span class="ident">from_str_radix</span>(<span class="string">&quot;foo&quot;</span>, <span class="number">10</span>);
  72. <span class="macro">assert</span><span class="macro">!</span>(<span class="ident">result</span>.<span class="ident">is_err</span>());</pre>
  73. </div></div>
  74. <h2 id='foreign-impls' class='small-section-header'>
  75. Implementations on Foreign Types<a href='#foreign-impls' class='anchor'></a>
  76. </h2>
  77. <h3 id='impl-Num' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a></code><a href='#impl-Num' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#149-157' title='goto source code'>[src]</a></span></h3>
  78. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-1' class="type"><span id='FromStrRadixErr.t-1' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
  79. <h4 id='method.from_str_radix' class="method"><span id='from_str_radix.v-1' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#152-156' title='goto source code'>[src]</a></span></h4>
  80. </div></span><h3 id='impl-Num-1' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a></code><a href='#impl-Num-1' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#149-157' title='goto source code'>[src]</a></span></h3>
  81. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-2' class="type"><span id='FromStrRadixErr.t-2' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
  82. <h4 id='method.from_str_radix-1' class="method"><span id='from_str_radix.v-2' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#152-156' title='goto source code'>[src]</a></span></h4>
  83. </div></span><h3 id='impl-Num-2' class='impl'><span class='in-band'><code>impl&lt;T&gt; <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a> == <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a> == <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a> == <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a> == <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output" title="type core::ops::arith::Rem::Output">Output</a> == <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;,&nbsp;</span></code><a href='#impl-Num-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#162-171' title='goto source code'>[src]</a></span></h3>
  84. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-3' class="type"><span id='FromStrRadixErr.t-3' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = &lt;T as <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>&gt;::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a></code></span></h4>
  85. <h4 id='method.from_str_radix-2' class="method"><span id='from_str_radix.v-3' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;str: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt;, &lt;<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a>&lt;T&gt; as <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>&gt;::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#168-170' title='goto source code'>[src]</a></span></h4>
  86. </div></span><h3 id='impl-Num-3' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a></code><a href='#impl-Num-3' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#149-157' title='goto source code'>[src]</a></span></h3>
  87. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-4' class="type"><span id='FromStrRadixErr.t-4' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
  88. <h4 id='method.from_str_radix-3' class="method"><span id='from_str_radix.v-4' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#152-156' title='goto source code'>[src]</a></span></h4>
  89. </div></span><h3 id='impl-Num-4' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a></code><a href='#impl-Num-4' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#149-157' title='goto source code'>[src]</a></span></h3>
  90. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-5' class="type"><span id='FromStrRadixErr.t-5' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
  91. <h4 id='method.from_str_radix-4' class="method"><span id='from_str_radix.v-5' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#152-156' title='goto source code'>[src]</a></span></h4>
  92. </div></span><h3 id='impl-Num-5' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a></code><a href='#impl-Num-5' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#202-353' title='goto source code'>[src]</a></span></h3>
  93. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-6' class="type"><span id='FromStrRadixErr.t-6' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="../num_traits/struct.ParseFloatError.html" title="struct num_traits::ParseFloatError">ParseFloatError</a></code></span></h4>
  94. <h4 id='method.from_str_radix-5' class="method"><span id='from_str_radix.v-6' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;src: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, &lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a> as <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>&gt;::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#205-352' title='goto source code'>[src]</a></span></h4>
  95. </div></span><h3 id='impl-Num-6' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a></code><a href='#impl-Num-6' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#149-157' title='goto source code'>[src]</a></span></h3>
  96. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-7' class="type"><span id='FromStrRadixErr.t-7' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
  97. <h4 id='method.from_str_radix-6' class="method"><span id='from_str_radix.v-7' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#152-156' title='goto source code'>[src]</a></span></h4>
  98. </div></span><h3 id='impl-Num-7' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a href='#impl-Num-7' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#149-157' title='goto source code'>[src]</a></span></h3>
  99. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-8' class="type"><span id='FromStrRadixErr.t-8' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
  100. <h4 id='method.from_str_radix-7' class="method"><span id='from_str_radix.v-8' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#152-156' title='goto source code'>[src]</a></span></h4>
  101. </div></span><h3 id='impl-Num-8' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a href='#impl-Num-8' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#149-157' title='goto source code'>[src]</a></span></h3>
  102. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-9' class="type"><span id='FromStrRadixErr.t-9' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
  103. <h4 id='method.from_str_radix-8' class="method"><span id='from_str_radix.v-9' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#152-156' title='goto source code'>[src]</a></span></h4>
  104. </div></span><h3 id='impl-Num-9' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a></code><a href='#impl-Num-9' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#202-353' title='goto source code'>[src]</a></span></h3>
  105. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-10' class="type"><span id='FromStrRadixErr.t-10' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="../num_traits/struct.ParseFloatError.html" title="struct num_traits::ParseFloatError">ParseFloatError</a></code></span></h4>
  106. <h4 id='method.from_str_radix-9' class="method"><span id='from_str_radix.v-10' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;src: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, &lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a> as <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>&gt;::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#205-352' title='goto source code'>[src]</a></span></h4>
  107. </div></span><h3 id='impl-Num-10' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a></code><a href='#impl-Num-10' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#149-157' title='goto source code'>[src]</a></span></h3>
  108. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-11' class="type"><span id='FromStrRadixErr.t-11' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
  109. <h4 id='method.from_str_radix-10' class="method"><span id='from_str_radix.v-11' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#152-156' title='goto source code'>[src]</a></span></h4>
  110. </div></span><h3 id='impl-Num-11' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a></code><a href='#impl-Num-11' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#149-157' title='goto source code'>[src]</a></span></h3>
  111. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-12' class="type"><span id='FromStrRadixErr.t-12' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
  112. <h4 id='method.from_str_radix-11' class="method"><span id='from_str_radix.v-12' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#152-156' title='goto source code'>[src]</a></span></h4>
  113. </div></span><h3 id='impl-Num-12' class='impl'><span class='in-band'><code>impl <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a></code><a href='#impl-Num-12' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#149-157' title='goto source code'>[src]</a></span></h3>
  114. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-13' class="type"><span id='FromStrRadixErr.t-13' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
  115. <h4 id='method.from_str_radix-12' class="method"><span id='from_str_radix.v-13' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#152-156' title='goto source code'>[src]</a></span></h4>
  116. </div></span><h3 id='impl-Num-13' class='impl'><span class='in-band'><code>impl&lt;T&gt; <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> for <a class="struct" href="../num_rational/struct.Ratio.html" title="struct num_rational::Ratio">Ratio</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num/trait.Integer.html" title="trait num::Integer">Integer</a>,&nbsp;</span></code><a href='#impl-Num-13' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_rational/lib.rs.html#738-764' title='goto source code'>[src]</a></span></h3>
  117. <span class='docblock autohide'><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr-14' class="type"><span id='FromStrRadixErr.t-14' class='invisible'><code>type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="../num_rational/struct.ParseRatioError.html" title="struct num_rational::ParseRatioError">ParseRatioError</a></code></span></h4>
  118. <h4 id='method.from_str_radix-13' class="method"><span id='from_str_radix.v-14' class='invisible'><code>fn <a href='#method.from_str_radix' class='fnname'>from_str_radix</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="struct" href="../num_rational/struct.Ratio.html" title="struct num_rational::Ratio">Ratio</a>&lt;T&gt;, <a class="struct" href="../num_rational/struct.ParseRatioError.html" title="struct num_rational::ParseRatioError">ParseRatioError</a>&gt;</code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_rational/lib.rs.html#742-763' title='goto source code'>[src]</a></span></h4>
  119. <div class='docblock'><p>Parses <code>numer/denom</code> where the numbers are in base <code>radix</code>.</p>
  120. </div></div></span>
  121. <h2 id='implementors' class='small-section-header'>
  122. Implementors<a href='#implementors' class='anchor'></a>
  123. </h2>
  124. <ul class='item-list' id='implementors-list'>
  125. <li><div class='out-of-band'><a class='srclink' href='../src/num_complex/lib.rs.html#1042-1051' title='goto source code'>[src]</a></div><code>impl&lt;T&gt; Num for <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>,&nbsp;</span><span class="where fmt-newline"> type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="../num_complex/struct.ParseComplexError.html" title="struct num_complex::ParseComplexError">ParseComplexError</a>&lt;&lt;T as <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>&gt;::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>&gt;;</span></code></li>
  126. <li><div class='out-of-band'><a class='srclink' href='../src/num_bigint/bigint.rs.html#193-211' title='goto source code'>[src]</a></div><code>impl Num for <a class="struct" href="../num/struct.BigInt.html" title="struct num::BigInt">BigInt</a><span class="where fmt-newline"> type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="enum" href="../num_bigint/enum.ParseBigIntError.html" title="enum num_bigint::ParseBigIntError">ParseBigIntError</a>;</span></code></li>
  127. <li><div class='out-of-band'><a class='srclink' href='../src/num_bigint/biguint.rs.html#221-283' title='goto source code'>[src]</a></div><code>impl Num for <a class="struct" href="../num/struct.BigUint.html" title="struct num::BigUint">BigUint</a><span class="where fmt-newline"> type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="enum" href="../num_bigint/enum.ParseBigIntError.html" title="enum num_bigint::ParseBigIntError">ParseBigIntError</a>;</span></code></li>
  128. </ul><script type="text/javascript" async
  129. src="../implementors/num_traits/trait.Num.js">
  130. </script></section>
  131. <section id='search' class="content hidden"></section>
  132. <section class="footer"></section>
  133. <aside id="help" class="hidden">
  134. <div>
  135. <h1 class="hidden">Help</h1>
  136. <div class="shortcuts">
  137. <h2>Keyboard Shortcuts</h2>
  138. <dl>
  139. <dt><kbd>?</kbd></dt>
  140. <dd>Show this help dialog</dd>
  141. <dt><kbd>S</kbd></dt>
  142. <dd>Focus the search field</dd>
  143. <dt><kbd>↑</kbd></dt>
  144. <dd>Move up in search results</dd>
  145. <dt><kbd>↓</kbd></dt>
  146. <dd>Move down in search results</dd>
  147. <dt><kbd>↹</kbd></dt>
  148. <dd>Switch tab</dd>
  149. <dt><kbd>&#9166;</kbd></dt>
  150. <dd>Go to active search result</dd>
  151. <dt><kbd>+</kbd></dt>
  152. <dd>Expand all sections</dd>
  153. <dt><kbd>-</kbd></dt>
  154. <dd>Collapse all sections</dd>
  155. </dl>
  156. </div>
  157. <div class="infos">
  158. <h2>Search Tricks</h2>
  159. <p>
  160. Prefix searches with a type followed by a colon (e.g.
  161. <code>fn:</code>) to restrict the search to a given type.
  162. </p>
  163. <p>
  164. Accepted types are: <code>fn</code>, <code>mod</code>,
  165. <code>struct</code>, <code>enum</code>,
  166. <code>trait</code>, <code>type</code>, <code>macro</code>,
  167. and <code>const</code>.
  168. </p>
  169. <p>
  170. Search functions by type signature (e.g.
  171. <code>vec -> usize</code> or <code>* -> vec</code>)
  172. </p>
  173. </div>
  174. </div>
  175. </aside>
  176. <script>
  177. window.rootPath = "../";
  178. window.currentCrate = "num";
  179. </script>
  180. <script src="../main.js"></script>
  181. <script defer src="../search-index.js"></script>
  182. </body>
  183. </html>