209 lines
No EOL
44 KiB
HTML
209 lines
No EOL
44 KiB
HTML
<!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="API documentation for the Rust `Num` trait in crate `num`.">
|
||
<meta name="keywords" content="rust, rustlang, rust-lang, Num">
|
||
|
||
<title>num::Num - Rust</title>
|
||
|
||
<link rel="stylesheet" type="text/css" href="../normalize.css">
|
||
<link rel="stylesheet" type="text/css" href="../rustdoc.css" id="mainThemeStyle">
|
||
|
||
<link rel="stylesheet" type="text/css" href="../dark.css">
|
||
<link rel="stylesheet" type="text/css" href="../main.css" id="themeStyle">
|
||
<script src="../storage.js"></script>
|
||
|
||
|
||
|
||
|
||
</head>
|
||
<body class="rustdoc trait">
|
||
<!--[if lte IE 8]>
|
||
<div class="warning">
|
||
This old browser is unsupported and will most likely display funky
|
||
things.
|
||
</div>
|
||
<![endif]-->
|
||
|
||
|
||
|
||
<nav class="sidebar">
|
||
<div class="sidebar-menu">☰</div>
|
||
|
||
<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">usize</a><a href="#impl-Num">i8</a><a href="#impl-Num">u32</a><a href="#impl-Num">f64</a><a href="#impl-Num">isize</a><a href="#impl-Num">u16</a><a href="#impl-Num">u64</a><a href="#impl-Num">f32</a><a href="#impl-Num">i32</a><a href="#impl-Num">Wrapping<T></a><a href="#impl-Num">i16</a><a href="#impl-Num">u8</a><a href="#impl-Num">i64</a><a href="#impl-Num">Ratio<T></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>
|
||
</nav>
|
||
|
||
<div class="theme-picker">
|
||
<button id="theme-picker" aria-label="Pick another theme!">
|
||
<img src="../brush.svg" width="18" alt="Pick another theme!">
|
||
</button>
|
||
<div id="theme-choices"></div>
|
||
</div>
|
||
<script src="../theme.js"></script>
|
||
<nav class="sub">
|
||
<form class="search-form js-only">
|
||
<div class="search-container">
|
||
<input class="search-input" name="search"
|
||
autocomplete="off"
|
||
placeholder="Click or press ‘S’ to search, ‘?’ for more options…"
|
||
type="search">
|
||
</div>
|
||
</form>
|
||
</nav>
|
||
|
||
<section id='main' class="content">
|
||
<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'>
|
||
<a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">
|
||
[<span class='inner'>−</span>]
|
||
</a>
|
||
</span><a class='srclink' href='../src/num_traits/lib.rs.html#63-81' title='goto source code'>[src]</a></span></h1>
|
||
<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><Self, Self> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a><Self> {
|
||
type <a href='#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a>;
|
||
fn <a href='#tymethod.from_str_radix' class='fnname'>from_str_radix</a>(<br> str: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, <br> radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br> ) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><Self, Self::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>>;
|
||
}</pre><div class='docblock'><p>The base trait for numeric types, covering <code>0</code> and <code>1</code> values,
|
||
comparisons, basic numeric operations, and string conversion.</p>
|
||
</div>
|
||
<h2 id='associated-types' class='small-section-header'>
|
||
Associated Types<a href='#associated-types' class='anchor'></a>
|
||
</h2>
|
||
<div class='methods'>
|
||
<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>
|
||
<h2 id='required-methods' class='small-section-header'>
|
||
Required Methods<a href='#required-methods' class='anchor'></a>
|
||
</h2>
|
||
<div class='methods'>
|
||
<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: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><Self, Self::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>></code></span></h3><div class='docblock'><p>Convert from a string and radix <= 36.</p>
|
||
<h1 id="examples" class="section-header"><a href="#examples">Examples</a></h1>
|
||
<pre class="rust rust-example-rendered">
|
||
<span class="kw">use</span> <span class="ident">num_traits</span>::<span class="ident">Num</span>;
|
||
|
||
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="op"><</span><span class="ident">i32</span> <span class="kw">as</span> <span class="ident">Num</span><span class="op">></span>::<span class="ident">from_str_radix</span>(<span class="string">"27"</span>, <span class="number">10</span>);
|
||
<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>));
|
||
|
||
<span class="kw">let</span> <span class="ident">result</span> <span class="op">=</span> <span class="op"><</span><span class="ident">i32</span> <span class="kw">as</span> <span class="ident">Num</span><span class="op">></span>::<span class="ident">from_str_radix</span>(<span class="string">"foo"</span>, <span class="number">10</span>);
|
||
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">result</span>.<span class="ident">is_err</span>());</pre>
|
||
</div></div>
|
||
<h2 id='foreign-impls' class='small-section-header'>
|
||
Implementations on Foreign Types<a href='#foreign-impls' class='anchor'></a>
|
||
</h2>
|
||
<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.usize.html">usize</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#151-159' title='goto source code'>[src]</a></span></h3>
|
||
<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>
|
||
<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: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<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>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#154-158' title='goto source code'>[src]</a></span></h4>
|
||
</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#151-159' title='goto source code'>[src]</a></span></h3>
|
||
<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>
|
||
<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: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<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>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#154-158' title='goto source code'>[src]</a></span></h4>
|
||
</div></span><h3 id='impl-Num-2' 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-2' class='anchor'></a></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#151-159' title='goto source code'>[src]</a></span></h3>
|
||
<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> = <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>
|
||
<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>(s: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<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>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#154-158' title='goto source code'>[src]</a></span></h4>
|
||
</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.f64.html">f64</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#206-357' title='goto source code'>[src]</a></span></h3>
|
||
<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="../num_traits/struct.ParseFloatError.html" title="struct num_traits::ParseFloatError">ParseFloatError</a></code></span></h4>
|
||
<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>(<br> src: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, <br> radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, <<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>>::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#209-356' title='goto source code'>[src]</a></span></h4>
|
||
</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#151-159' title='goto source code'>[src]</a></span></h3>
|
||
<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>
|
||
<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: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<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>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#154-158' title='goto source code'>[src]</a></span></h4>
|
||
</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.u16.html">u16</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#151-159' title='goto source code'>[src]</a></span></h3>
|
||
<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="https://doc.rust-lang.org/nightly/core/num/struct.ParseIntError.html" title="struct core::num::ParseIntError">ParseIntError</a></code></span></h4>
|
||
<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>(s: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<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>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#154-158' title='goto source code'>[src]</a></span></h4>
|
||
</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#151-159' title='goto source code'>[src]</a></span></h3>
|
||
<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>
|
||
<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: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<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>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#154-158' title='goto source code'>[src]</a></span></h4>
|
||
</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.f32.html">f32</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#206-357' title='goto source code'>[src]</a></span></h3>
|
||
<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="../num_traits/struct.ParseFloatError.html" title="struct num_traits::ParseFloatError">ParseFloatError</a></code></span></h4>
|
||
<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>(<br> src: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, <br> radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, <<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>>::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#209-356' title='goto source code'>[src]</a></span></h4>
|
||
</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.i32.html">i32</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#151-159' title='goto source code'>[src]</a></span></h3>
|
||
<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>
|
||
<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: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<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>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#154-158' title='goto source code'>[src]</a></span></h4>
|
||
</div></span><h3 id='impl-Num-9' class='impl'><span class='in-band'><code>impl<T> <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><T> <span class="where fmt-newline">where<br> T: <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>,<br> <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>>,<br> <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>>,<br> <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>>,<br> <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>>,<br> <a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>>,<br> <<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T> 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><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>>>::<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><T>,<br> <<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T> 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><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>>>::<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><T>,<br> <<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T> 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><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>>>::<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><T>,<br> <<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T> 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><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>>>::<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><T>,<br> <<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T> 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><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>>>::<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><T>, </span></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#166-175' title='goto source code'>[src]</a></span></h3>
|
||
<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> = <T as <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>>::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a></code></span></h4>
|
||
<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> str: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, <br> radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T>, <<a class="struct" href="https://doc.rust-lang.org/nightly/core/num/struct.Wrapping.html" title="struct core::num::Wrapping">Wrapping</a><T> as <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>>::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#172-174' title='goto source code'>[src]</a></span></h4>
|
||
</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#151-159' title='goto source code'>[src]</a></span></h3>
|
||
<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>
|
||
<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: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<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>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#154-158' title='goto source code'>[src]</a></span></h4>
|
||
</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.u8.html">u8</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#151-159' title='goto source code'>[src]</a></span></h3>
|
||
<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>
|
||
<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: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<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>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#154-158' title='goto source code'>[src]</a></span></h4>
|
||
</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#151-159' title='goto source code'>[src]</a></span></h3>
|
||
<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>
|
||
<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: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<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>></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_traits/lib.rs.html#154-158' title='goto source code'>[src]</a></span></h4>
|
||
</div></span><h3 id='impl-Num-13' class='impl'><span class='in-band'><code>impl<T> <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><T> <span class="where fmt-newline">where<br> 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>, </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>
|
||
<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>
|
||
<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: &<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>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="struct" href="../num_rational/struct.Ratio.html" title="struct num_rational::Ratio">Ratio</a><T>, <a class="struct" href="../num_rational/struct.ParseRatioError.html" title="struct num_rational::ParseRatioError">ParseRatioError</a>></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>
|
||
<div class='docblock'><p>Parses <code>numer/denom</code> where the numbers are in base <code>radix</code>.</p>
|
||
</div></div></span>
|
||
<h2 id='implementors' class='small-section-header'>
|
||
Implementors<a href='#implementors' class='anchor'></a>
|
||
</h2>
|
||
<ul class='item-list' id='implementors-list'>
|
||
<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<T> Num for <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T> <span class="where fmt-newline">where<br> 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>, </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><<T as <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a>>::<a class="type" href="../num/trait.Num.html#associatedtype.FromStrRadixErr" title="type num::Num::FromStrRadixErr">FromStrRadixErr</a>>;</span></code></li>
|
||
<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>
|
||
<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>
|
||
</ul><script type="text/javascript" async
|
||
src="../implementors/num_traits/trait.Num.js">
|
||
</script></section>
|
||
<section id='search' class="content hidden"></section>
|
||
|
||
<section class="footer"></section>
|
||
|
||
<aside id="help" class="hidden">
|
||
<div>
|
||
<h1 class="hidden">Help</h1>
|
||
|
||
<div class="shortcuts">
|
||
<h2>Keyboard Shortcuts</h2>
|
||
|
||
<dl>
|
||
<dt><kbd>?</kbd></dt>
|
||
<dd>Show this help dialog</dd>
|
||
<dt><kbd>S</kbd></dt>
|
||
<dd>Focus the search field</dd>
|
||
<dt><kbd>↑</kbd></dt>
|
||
<dd>Move up in search results</dd>
|
||
<dt><kbd>↓</kbd></dt>
|
||
<dd>Move down in search results</dd>
|
||
<dt><kbd>↹</kbd></dt>
|
||
<dd>Switch tab</dd>
|
||
<dt><kbd>⏎</kbd></dt>
|
||
<dd>Go to active search result</dd>
|
||
<dt><kbd>+</kbd></dt>
|
||
<dd>Expand all sections</dd>
|
||
<dt><kbd>-</kbd></dt>
|
||
<dd>Collapse all sections</dd>
|
||
</dl>
|
||
</div>
|
||
|
||
<div class="infos">
|
||
<h2>Search Tricks</h2>
|
||
|
||
<p>
|
||
Prefix searches with a type followed by a colon (e.g.
|
||
<code>fn:</code>) to restrict the search to a given type.
|
||
</p>
|
||
|
||
<p>
|
||
Accepted types are: <code>fn</code>, <code>mod</code>,
|
||
<code>struct</code>, <code>enum</code>,
|
||
<code>trait</code>, <code>type</code>, <code>macro</code>,
|
||
and <code>const</code>.
|
||
</p>
|
||
|
||
<p>
|
||
Search functions by type signature (e.g.
|
||
<code>vec -> usize</code> or <code>* -> vec</code>)
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</aside>
|
||
|
||
|
||
|
||
<script>
|
||
window.rootPath = "../";
|
||
window.currentCrate = "num";
|
||
</script>
|
||
<script src="../main.js"></script>
|
||
<script defer src="../search-index.js"></script>
|
||
</body>
|
||
</html> |