<!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 `Complex` struct in crate `num`.">
<meta name="keywords" content="rust, rustlang, rust-lang, Complex">
<title>num::Complex - Rust</title>
<link rel="stylesheet" type="text/css" href="../normalize.css">
<link rel="stylesheet" type="text/css" href="../rustdoc.css">
<link rel="stylesheet" type="text/css" href="../main.css">
<link rel="shortcut icon" href="https://rust-num.github.io/num/favicon.ico">
</head>
<body class="rustdoc struct">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<nav class="sidebar">
<a href='../num/index.html'><img src='https://rust-num.github.io/num/rust-logo-128x128-blk-v2.png' alt='logo' width='100'></a>
<p class='location'><a href='index.html'>num</a></p><script>window.sidebarCurrent = {name: 'Complex', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</nav>
<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'>Struct <a href='index.html'>num</a>::<wbr><a class="struct" href=''>Complex</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_complex/lib.rs.html#65-70' title='goto source code'>[src]</a></span></h1>
<pre class='rust struct'><div class="docblock attributes">#[repr(C)]
</div>pub struct Complex<T> {
pub re: T,
pub im: T,
}</pre><div class='docblock'><p>A complex number in Cartesian form.</p>
<h2 id="representation-and-foreign-function-interface-compatibility" class="section-header"><a href="#representation-and-foreign-function-interface-compatibility">Representation and Foreign Function Interface Compatibility</a></h2>
<p><code>Complex<T></code> is memory layout compatible with an array <code>[T; 2]</code>.</p>
<p>Note that <code>Complex<F></code> where F is a floating point type is <strong>only</strong> memory
layout compatible with C's complex types, <strong>not</strong> necessarily calling
convention compatible. This means that for FFI you can only pass
<code>Complex<F></code> behind a pointer, not as a value.</p>
<h2 id="examples" class="section-header"><a href="#examples">Examples</a></h2>
<p>Example of extern function declaration.</p>
<pre class="rust rust-example-rendered">
<span class="kw">use</span> <span class="ident">num_complex</span>::<span class="ident">Complex</span>;
<span class="kw">use</span> <span class="ident">std</span>::<span class="ident">os</span>::<span class="ident">raw</span>::<span class="ident">c_int</span>;
<span class="kw">extern</span> <span class="string">"C"</span> {
<span class="kw">fn</span> <span class="ident">zaxpy_</span>(<span class="ident">n</span>: <span class="kw-2">*</span><span class="kw">const</span> <span class="ident">c_int</span>, <span class="ident">alpha</span>: <span class="kw-2">*</span><span class="kw">const</span> <span class="ident">Complex</span><span class="op"><</span><span class="ident">f64</span><span class="op">></span>,
<span class="ident">x</span>: <span class="kw-2">*</span><span class="kw">const</span> <span class="ident">Complex</span><span class="op"><</span><span class="ident">f64</span><span class="op">></span>, <span class="ident">incx</span>: <span class="kw-2">*</span><span class="kw">const</span> <span class="ident">c_int</span>,
<span class="ident">y</span>: <span class="kw-2">*</span><span class="kw-2">mut</span> <span class="ident">Complex</span><span class="op"><</span><span class="ident">f64</span><span class="op">></span>, <span class="ident">incy</span>: <span class="kw-2">*</span><span class="kw">const</span> <span class="ident">c_int</span>);
}<a class="test-arrow" target="_blank" href="http://play.integer32.com/?code=extern%20crate%20num%3B%0Afn%20main()%20%7B%0Ause%20num_complex%3A%3AComplex%3B%0Ause%20std%3A%3Aos%3A%3Araw%3A%3Ac_int%3B%0A%0Aextern%20%22C%22%20%7B%0A%20%20%20%20fn%20zaxpy_(n%3A%20*const%20c_int%2C%20alpha%3A%20*const%20Complex%3Cf64%3E%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20x%3A%20*const%20Complex%3Cf64%3E%2C%20incx%3A%20*const%20c_int%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20y%3A%20*mut%20Complex%3Cf64%3E%2C%20incy%3A%20*const%20c_int)%3B%0A%7D%0A%7D">Run</a></pre>
</div><h2 class='fields'>Fields</h2><span id='structfield.re' class="structfield">
<span id='re.v' class='invisible'>
<code>re: T</code>
</span></span><div class='docblock'><p>Real portion of the complex number</p>
</div><span id='structfield.im' class="structfield">
<span id='im.v' class='invisible'>
<code>im: T</code>
</span></span><div class='docblock'><p>Imaginary portion of the complex number</p>
</div><h2 id='methods'>Methods</h2><h3 class='impl'><span class='in-band'><code>impl<T> <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#75-106' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.new' class="method"><span id='new.v' class='invisible'><code>fn <a href='#method.new' class='fnname'>new</a>(re: T, im: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Create a new Complex</p>
</div><h4 id='method.i' class="method"><span id='i.v' class='invisible'><code>fn <a href='#method.i' class='fnname'>i</a>() -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Returns imaginary unit</p>
</div><h4 id='method.norm_sqr' class="method"><span id='norm_sqr.v' class='invisible'><code>fn <a href='#method.norm_sqr' class='fnname'>norm_sqr</a>(&self) -> T</code></span></h4>
<div class='docblock'><p>Returns the square of the norm (since <code>T</code> doesn't necessarily
have a sqrt function), i.e. <code>re^2 + im^2</code>.</p>
</div><h4 id='method.scale' class="method"><span id='scale.v' class='invisible'><code>fn <a href='#method.scale' class='fnname'>scale</a>(&self, t: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Multiplies <code>self</code> by the scalar <code>t</code>.</p>
</div><h4 id='method.unscale' class="method"><span id='unscale.v' class='invisible'><code>fn <a href='#method.unscale' class='fnname'>unscale</a>(&self, t: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Divides <code>self</code> by the scalar <code>t</code>.</p>
</div></div><h3 class='impl'><span class='in-band'><code>impl<T> <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/ops/trait.Neg.html" title="trait core::ops::Neg">Neg</a><Output = 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#108-122' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.conj' class="method"><span id='conj.v' class='invisible'><code>fn <a href='#method.conj' class='fnname'>conj</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Returns the complex conjugate. i.e. <code>re - i im</code></p>
</div><h4 id='method.inv' class="method"><span id='inv.v' class='invisible'><code>fn <a href='#method.inv' class='fnname'>inv</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Returns <code>1/self</code></p>
</div></div><h3 class='impl'><span class='in-band'><code>impl<T> <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.Float.html" title="trait num::Float">Float</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#124-403' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.norm' class="method"><span id='norm.v' class='invisible'><code>fn <a href='#method.norm' class='fnname'>norm</a>(&self) -> T</code></span></h4>
<div class='docblock'><p>Calculate |self|</p>
</div><h4 id='method.arg' class="method"><span id='arg.v' class='invisible'><code>fn <a href='#method.arg' class='fnname'>arg</a>(&self) -> T</code></span></h4>
<div class='docblock'><p>Calculate the principal Arg of self.</p>
</div><h4 id='method.to_polar' class="method"><span id='to_polar.v' class='invisible'><code>fn <a href='#method.to_polar' class='fnname'>to_polar</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>T, T<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code></span></h4>
<div class='docblock'><p>Convert to polar form (r, theta), such that `self = r * exp(i</p>
<ul>
<li>theta)`</li>
</ul>
</div><h4 id='method.from_polar' class="method"><span id='from_polar.v' class='invisible'><code>fn <a href='#method.from_polar' class='fnname'>from_polar</a>(r: &T, theta: &T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Convert a polar representation into a complex number.</p>
</div><h4 id='method.exp' class="method"><span id='exp.v' class='invisible'><code>fn <a href='#method.exp' class='fnname'>exp</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes <code>e^(self)</code>, where <code>e</code> is the base of the natural logarithm.</p>
</div><h4 id='method.ln' class="method"><span id='ln.v' class='invisible'><code>fn <a href='#method.ln' class='fnname'>ln</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the principal value of natural logarithm of <code>self</code>.</p>
<p>This function has one branch cut:</p>
<ul>
<li><code>(-∞, 0]</code>, continuous from above.</li>
</ul>
<p>The branch satisfies <code>-π ≤ arg(ln(z)) ≤ π</code>.</p>
</div><h4 id='method.sqrt' class="method"><span id='sqrt.v' class='invisible'><code>fn <a href='#method.sqrt' class='fnname'>sqrt</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the principal value of the square root of <code>self</code>.</p>
<p>This function has one branch cut:</p>
<ul>
<li><code>(-∞, 0)</code>, continuous from above.</li>
</ul>
<p>The branch satisfies <code>-π/2 ≤ arg(sqrt(z)) ≤ π/2</code>.</p>
</div><h4 id='method.powf' class="method"><span id='powf.v' class='invisible'><code>fn <a href='#method.powf' class='fnname'>powf</a>(&self, exp: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Raises <code>self</code> to a floating point power.</p>
</div><h4 id='method.log' class="method"><span id='log.v' class='invisible'><code>fn <a href='#method.log' class='fnname'>log</a>(&self, base: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Returns the logarithm of <code>self</code> with respect to an arbitrary base.</p>
</div><h4 id='method.powc' class="method"><span id='powc.v' class='invisible'><code>fn <a href='#method.powc' class='fnname'>powc</a>(&self, exp: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Raises <code>self</code> to a complex power.</p>
</div><h4 id='method.expf' class="method"><span id='expf.v' class='invisible'><code>fn <a href='#method.expf' class='fnname'>expf</a>(&self, base: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Raises a floating point number to the complex power <code>self</code>.</p>
</div><h4 id='method.sin' class="method"><span id='sin.v' class='invisible'><code>fn <a href='#method.sin' class='fnname'>sin</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the sine of <code>self</code>.</p>
</div><h4 id='method.cos' class="method"><span id='cos.v' class='invisible'><code>fn <a href='#method.cos' class='fnname'>cos</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the cosine of <code>self</code>.</p>
</div><h4 id='method.tan' class="method"><span id='tan.v' class='invisible'><code>fn <a href='#method.tan' class='fnname'>tan</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the tangent of <code>self</code>.</p>
</div><h4 id='method.asin' class="method"><span id='asin.v' class='invisible'><code>fn <a href='#method.asin' class='fnname'>asin</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the principal value of the inverse sine of <code>self</code>.</p>
<p>This function has two branch cuts:</p>
<ul>
<li><code>(-∞, -1)</code>, continuous from above.</li>
<li><code>(1, ∞)</code>, continuous from below.</li>
</ul>
<p>The branch satisfies <code>-π/2 ≤ Re(asin(z)) ≤ π/2</code>.</p>
</div><h4 id='method.acos' class="method"><span id='acos.v' class='invisible'><code>fn <a href='#method.acos' class='fnname'>acos</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the principal value of the inverse cosine of <code>self</code>.</p>
<p>This function has two branch cuts:</p>
<ul>
<li><code>(-∞, -1)</code>, continuous from above.</li>
<li><code>(1, ∞)</code>, continuous from below.</li>
</ul>
<p>The branch satisfies <code>0 ≤ Re(acos(z)) ≤ π</code>.</p>
</div><h4 id='method.atan' class="method"><span id='atan.v' class='invisible'><code>fn <a href='#method.atan' class='fnname'>atan</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the principal value of the inverse tangent of <code>self</code>.</p>
<p>This function has two branch cuts:</p>
<ul>
<li><code>(-∞i, -i]</code>, continuous from the left.</li>
<li><code>[i, ∞i)</code>, continuous from the right.</li>
</ul>
<p>The branch satisfies <code>-π/2 ≤ Re(atan(z)) ≤ π/2</code>.</p>
</div><h4 id='method.sinh' class="method"><span id='sinh.v' class='invisible'><code>fn <a href='#method.sinh' class='fnname'>sinh</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the hyperbolic sine of <code>self</code>.</p>
</div><h4 id='method.cosh' class="method"><span id='cosh.v' class='invisible'><code>fn <a href='#method.cosh' class='fnname'>cosh</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the hyperbolic cosine of <code>self</code>.</p>
</div><h4 id='method.tanh' class="method"><span id='tanh.v' class='invisible'><code>fn <a href='#method.tanh' class='fnname'>tanh</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the hyperbolic tangent of <code>self</code>.</p>
</div><h4 id='method.asinh' class="method"><span id='asinh.v' class='invisible'><code>fn <a href='#method.asinh' class='fnname'>asinh</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the principal value of inverse hyperbolic sine of <code>self</code>.</p>
<p>This function has two branch cuts:</p>
<ul>
<li><code>(-∞i, -i)</code>, continuous from the left.</li>
<li><code>(i, ∞i)</code>, continuous from the right.</li>
</ul>
<p>The branch satisfies <code>-π/2 ≤ Im(asinh(z)) ≤ π/2</code>.</p>
</div><h4 id='method.acosh' class="method"><span id='acosh.v' class='invisible'><code>fn <a href='#method.acosh' class='fnname'>acosh</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the principal value of inverse hyperbolic cosine of <code>self</code>.</p>
<p>This function has one branch cut:</p>
<ul>
<li><code>(-∞, 1)</code>, continuous from above.</li>
</ul>
<p>The branch satisfies <code>-π ≤ Im(acosh(z)) ≤ π</code> and <code>0 ≤ Re(acosh(z)) < ∞</code>.</p>
</div><h4 id='method.atanh' class="method"><span id='atanh.v' class='invisible'><code>fn <a href='#method.atanh' class='fnname'>atanh</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Computes the principal value of inverse hyperbolic tangent of <code>self</code>.</p>
<p>This function has two branch cuts:</p>
<ul>
<li><code>(-∞, -1]</code>, continuous from above.</li>
<li><code>[1, ∞)</code>, continuous from below.</li>
</ul>
<p>The branch satisfies <code>-π/2 ≤ Im(atanh(z)) ≤ π/2</code>.</p>
</div><h4 id='method.is_nan' class="method"><span id='is_nan.v' class='invisible'><code>fn <a href='#method.is_nan' class='fnname'>is_nan</a>(self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span></h4>
<div class='docblock'><p>Checks if the given complex number is NaN</p>
</div><h4 id='method.is_infinite' class="method"><span id='is_infinite.v' class='invisible'><code>fn <a href='#method.is_infinite' class='fnname'>is_infinite</a>(self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span></h4>
<div class='docblock'><p>Checks if the given complex number is infinite</p>
</div><h4 id='method.is_finite' class="method"><span id='is_finite.v' class='invisible'><code>fn <a href='#method.is_finite' class='fnname'>is_finite</a>(self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span></h4>
<div class='docblock'><p>Checks if the given complex number is finite</p>
</div><h4 id='method.is_normal' class="method"><span id='is_normal.v' class='invisible'><code>fn <a href='#method.is_normal' class='fnname'>is_normal</a>(self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span></h4>
<div class='docblock'><p>Checks if the given complex number is normal</p>
</div></div><h2 id='implementations'>Trait Implementations</h2><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="../rustc_serialize/serialize/trait.Decodable.html" title="trait rustc_serialize::serialize::Decodable">Decodable</a> 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="../rustc_serialize/serialize/trait.Decodable.html" title="trait rustc_serialize::serialize::Decodable">Decodable</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#63' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.decode' class="method"><span id='decode.v' class='invisible'><code>fn <a href='../rustc_serialize/serialize/trait.Decodable.html#tymethod.decode' class='fnname'>decode</a><__DT>(__arg_0: &mut __DT) -> <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/struct.Complex.html" title="struct num::Complex">Complex</a><T>, __DT::<a class="trait" href="../rustc_serialize/serialize/trait.Decoder.html" title="trait rustc_serialize::serialize::Decoder">Error</a>> <span class="where fmt-newline">where<br> __DT: <a class="trait" href="../rustc_serialize/serialize/trait.Decoder.html" title="trait rustc_serialize::serialize::Decoder">Decoder</a>, </span></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a> 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/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#62' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'></div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Octal.html" title="trait core::fmt::Octal">Octal</a> 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/fmt/trait.Octal.html" title="trait core::fmt::Octal">Octal</a> + <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a><T> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#866-872' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.fmt' class="method"><span id='fmt.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Octal.html#tymethod.fmt' class='fnname'>fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</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.tuple.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html" title="trait core::str::FromStr">FromStr</a> 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/str/trait.FromStr.html" title="trait core::str::FromStr">FromStr</a> + <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#882-971' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Err' class="type"><span id='Err.t' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#associatedtype.Err' class="type">Err</a> = <a class="struct" href="../num_complex/struct.ParseComplexError.html" title="struct num_complex::ParseComplexError">ParseComplexError</a><T::<a class="trait" href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html" title="trait core::str::FromStr">Err</a>></code></span></h4>
<h4 id='method.from_str' class="method"><span id='from_str.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#tymethod.from_str' class='fnname'>from_str</a>(s: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</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/struct.Complex.html" title="struct num::Complex">Complex</a><T>, <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>::<a class="trait" href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html" title="trait core::str::FromStr">Err</a>></code></span></h4>
<div class='docblock'><p>Parses <code>a +/- bi</code>; <code>ai +/- b</code>; <code>a</code>; or <code>bi</code> where <code>a</code> and <code>b</code> are of type <code>T</code></p>
</div></div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/default/trait.Default.html" title="trait core::default::Default">Default</a> 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/default/trait.Default.html" title="trait core::default::Default">Default</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#62' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.default' class="method"><span id='default.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/default/trait.Default.html#tymethod.default' class='fnname'>default</a>() -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html" title="trait core::ops::MulAssign">MulAssign</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#544-548' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.mul_assign' class="method"><span id='mul_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&mut self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html" title="trait core::ops::MulAssign">MulAssign</a><T> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#568-573' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.mul_assign-1' class="method"><span id='mul_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&mut self, other: T)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html" title="trait core::ops::MulAssign">MulAssign</a><&'a <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#584-589' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.mul_assign-2' class="method"><span id='mul_assign.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&mut self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html" title="trait core::ops::MulAssign">MulAssign</a><&'a T> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#590-595' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.mul_assign-3' class="method"><span id='mul_assign.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&mut self, other: &T)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a> 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/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#62' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'></div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html" title="trait core::ops::AddAssign">AddAssign</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#530-535' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.add_assign' class="method"><span id='add_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&mut self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html" title="trait core::ops::AddAssign">AddAssign</a><T> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#556-560' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.add_assign-1' class="method"><span id='add_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&mut self, other: T)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html" title="trait core::ops::AddAssign">AddAssign</a><&'a <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#584-589' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.add_assign-2' class="method"><span id='add_assign.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&mut self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html" title="trait core::ops::AddAssign">AddAssign</a><&'a T> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#590-595' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.add_assign-3' class="method"><span id='add_assign.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&mut self, other: &T)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html" title="trait core::ops::Mul">Mul</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#494-503' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output' class="type"><span id='Output.t' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.mul' class="method"><span id='mul.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html" title="trait core::ops::Mul">Mul</a><T> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#743-750' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-1' class="type"><span id='Output.t-1' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.mul-1' class="method"><span id='mul.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, 'b, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html" title="trait core::ops::Mul">Mul</a><&'b <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#421-428' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-2' class="type"><span id='Output.t-2' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.mul-2' class="method"><span id='mul.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html" title="trait core::ops::Mul">Mul</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#434-441' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-3' class="type"><span id='Output.t-3' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.mul-3' class="method"><span id='mul.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html" title="trait core::ops::Mul">Mul</a><&'a <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#447-454' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-4' class="type"><span id='Output.t-4' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.mul-4' class="method"><span id='mul.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html" title="trait core::ops::Mul">Mul</a><&'a T> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#625-632' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-5' class="type"><span id='Output.t-5' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.mul-5' class="method"><span id='mul.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html" title="trait core::ops::Mul">Mul</a><T> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#633-640' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-6' class="type"><span id='Output.t-6' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.mul-6' class="method"><span id='mul.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, 'b, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html" title="trait core::ops::Mul">Mul</a><&'a T> for &'b <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#641-648' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-7' class="type"><span id='Output.t-7' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.mul-7' class="method"><span id='mul.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a> 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/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a> + <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a><T> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#826-832' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.fmt-1' class="method"><span id='fmt.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html#tymethod.fmt' class='fnname'>fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</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.tuple.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html" title="trait core::ops::DivAssign">DivAssign</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#550-554' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.div_assign' class="method"><span id='div_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&mut self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html" title="trait core::ops::DivAssign">DivAssign</a><T> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#575-580' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.div_assign-1' class="method"><span id='div_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&mut self, other: T)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html" title="trait core::ops::DivAssign">DivAssign</a><&'a <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#584-589' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.div_assign-2' class="method"><span id='div_assign.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&mut self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html" title="trait core::ops::DivAssign">DivAssign</a><&'a T> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#590-595' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.div_assign-3' class="method"><span id='div_assign.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&mut self, other: &T)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html" title="trait core::ops::Sub">Sub</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#482-489' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-8' class="type"><span id='Output.t-8' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.sub' class="method"><span id='sub.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html" title="trait core::ops::Sub">Sub</a><T> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#734-741' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-9' class="type"><span id='Output.t-9' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.sub-1' class="method"><span id='sub.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, 'b, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html" title="trait core::ops::Sub">Sub</a><&'b <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#421-428' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-10' class="type"><span id='Output.t-10' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.sub-2' class="method"><span id='sub.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html" title="trait core::ops::Sub">Sub</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#434-441' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-11' class="type"><span id='Output.t-11' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.sub-3' class="method"><span id='sub.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html" title="trait core::ops::Sub">Sub</a><&'a <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#447-454' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-12' class="type"><span id='Output.t-12' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.sub-4' class="method"><span id='sub.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html" title="trait core::ops::Sub">Sub</a><&'a T> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#625-632' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-13' class="type"><span id='Output.t-13' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.sub-5' class="method"><span id='sub.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html" title="trait core::ops::Sub">Sub</a><T> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#633-640' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-14' class="type"><span id='Output.t-14' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.sub-6' class="method"><span id='sub.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, 'b, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html" title="trait core::ops::Sub">Sub</a><&'a T> for &'b <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#641-648' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-15' class="type"><span id='Output.t-15' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.sub-7' class="method"><span id='sub.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.LowerExp.html" title="trait core::fmt::LowerExp">LowerExp</a> 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/fmt/trait.LowerExp.html" title="trait core::fmt::LowerExp">LowerExp</a> + <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a><T> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#834-840' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.fmt-2' class="method"><span id='fmt.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.LowerExp.html#tymethod.fmt' class='fnname'>fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</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.tuple.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.UpperExp.html" title="trait core::fmt::UpperExp">UpperExp</a> 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/fmt/trait.UpperExp.html" title="trait core::fmt::UpperExp">UpperExp</a> + <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a><T> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#842-848' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.fmt-3' class="method"><span id='fmt.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.UpperExp.html#tymethod.fmt' class='fnname'>fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</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.tuple.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.UpperHex.html" title="trait core::fmt::UpperHex">UpperHex</a> 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/fmt/trait.UpperHex.html" title="trait core::fmt::UpperHex">UpperHex</a> + <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a><T> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#858-864' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.fmt-4' class="method"><span id='fmt.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.UpperHex.html#tymethod.fmt' class='fnname'>fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</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.tuple.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="../num/trait.One.html" title="trait num::One">One</a> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#776-781' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.one' class="method"><span id='one.v' class='invisible'><code>fn <a href='../num/trait.One.html#tymethod.one' class='fnname'>one</a>() -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Returns the multiplicative identity element of <code>Self</code>, <code>1</code>. <a href="../num/trait.One.html#tymethod.one">Read more</a></p>
</div></div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> 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/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#62' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.fmt-5' class="method"><span id='fmt.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt' class='fnname'>fmt</a>(&self, __arg_0: &mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</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.tuple.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Add.html" title="trait core::ops::Add">Add</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#470-477' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-16' class="type"><span id='Output.t-16' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.add' class="method"><span id='add.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Add.html" title="trait core::ops::Add">Add</a><T> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#725-732' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-17' class="type"><span id='Output.t-17' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.add-1' class="method"><span id='add.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, 'b, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Add.html" title="trait core::ops::Add">Add</a><&'b <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#421-428' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-18' class="type"><span id='Output.t-18' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.add-2' class="method"><span id='add.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Add.html" title="trait core::ops::Add">Add</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#434-441' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-19' class="type"><span id='Output.t-19' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.add-3' class="method"><span id='add.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Add.html" title="trait core::ops::Add">Add</a><&'a <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#447-454' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-20' class="type"><span id='Output.t-20' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.add-4' class="method"><span id='add.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Add.html" title="trait core::ops::Add">Add</a><&'a T> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#625-632' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-21' class="type"><span id='Output.t-21' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.add-5' class="method"><span id='add.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Add.html" title="trait core::ops::Add">Add</a><T> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#633-640' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-22' class="type"><span id='Output.t-22' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.add-6' class="method"><span id='add.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, 'b, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Add.html" title="trait core::ops::Add">Add</a><&'a T> for &'b <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#641-648' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-23' class="type"><span id='Output.t-23' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.add-7' class="method"><span id='add.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a><T>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#62' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.eq' class="method"><span id='eq.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class='fnname'>eq</a>(&self, __arg_0: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span></h4>
<h4 id='method.ne' class="method"><span id='ne.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class='fnname'>ne</a>(&self, __arg_0: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> 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>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#62' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.clone' class="method"><span id='clone.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone' class='fnname'>clone</a>(&self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Binary.html" title="trait core::fmt::Binary">Binary</a> 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/fmt/trait.Binary.html" title="trait core::fmt::Binary">Binary</a> + <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a><T> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#874-880' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.fmt-6' class="method"><span id='fmt.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Binary.html#tymethod.fmt' class='fnname'>fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</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.tuple.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="../num/trait.Zero.html" title="trait num::Zero">Zero</a> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#764-774' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.zero' class="method"><span id='zero.v' class='invisible'><code>fn <a href='../num/trait.Zero.html#tymethod.zero' class='fnname'>zero</a>() -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<div class='docblock'><p>Returns the additive identity element of <code>Self</code>, <code>0</code>. <a href="../num/trait.Zero.html#tymethod.zero">Read more</a></p>
</div><h4 id='method.is_zero' class="method"><span id='is_zero.v' class='invisible'><code>fn <a href='../num/trait.Zero.html#tymethod.is_zero' class='fnname'>is_zero</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code></span></h4>
<div class='docblock'><p>Returns <code>true</code> if <code>self</code> is equal to the additive identity.</p>
</div></div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html" title="trait core::ops::Neg">Neg</a> 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/ops/trait.Neg.html" title="trait core::ops::Neg">Neg</a><Output = 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#605-612' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-24' class="type"><span id='Output.t-24' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.neg' class="method"><span id='neg.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html#tymethod.neg' class='fnname'>neg</a>(self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html" title="trait core::ops::Neg">Neg</a> for &'a <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/ops/trait.Neg.html" title="trait core::ops::Neg">Neg</a><Output = 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#614-621' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-25' class="type"><span id='Output.t-25' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.neg-1' class="method"><span id='neg.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Neg.html#tymethod.neg' class='fnname'>neg</a>(self) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.LowerHex.html" title="trait core::fmt::LowerHex">LowerHex</a> 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/fmt/trait.LowerHex.html" title="trait core::fmt::LowerHex">LowerHex</a> + <a class="trait" href="../num/trait.Num.html" title="trait num::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a><T> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#850-856' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.fmt-7' class="method"><span id='fmt.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.LowerHex.html#tymethod.fmt' class='fnname'>fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</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.tuple.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html" title="trait core::ops::SubAssign">SubAssign</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#537-542' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.sub_assign' class="method"><span id='sub_assign.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&mut self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html" title="trait core::ops::SubAssign">SubAssign</a><T> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#562-566' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.sub_assign-1' class="method"><span id='sub_assign.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&mut self, other: T)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html" title="trait core::ops::SubAssign">SubAssign</a><&'a <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#584-589' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.sub_assign-2' class="method"><span id='sub_assign.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&mut self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html" title="trait core::ops::SubAssign">SubAssign</a><&'a T> 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_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#590-595' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.sub_assign-3' class="method"><span id='sub_assign.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&mut self, other: &T)</code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a><T> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#405-410' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.from' class="method"><span id='from.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(re: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a><&'a T> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#412-417' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.from-1' class="method"><span id='from.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(re: &T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html" title="trait core::hash::Hash">Hash</a> 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/hash/trait.Hash.html" title="trait core::hash::Hash">Hash</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#62' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.hash' class="method"><span id='hash.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#tymethod.hash' class='fnname'>hash</a><__HT>(&self, __arg_0: &mut __HT) <span class="where fmt-newline">where<br> __HT: <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>, </span></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Div.html" title="trait core::ops::Div">Div</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#509-519' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-26' class="type"><span id='Output.t-26' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.div' class="method"><span id='div.v' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Div.html" title="trait core::ops::Div">Div</a><T> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#752-759' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-27' class="type"><span id='Output.t-27' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.div-1' class="method"><span id='div.v-1' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, 'b, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Div.html" title="trait core::ops::Div">Div</a><&'b <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#421-428' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-28' class="type"><span id='Output.t-28' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.div-2' class="method"><span id='div.v-2' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Div.html" title="trait core::ops::Div">Div</a><<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#434-441' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-29' class="type"><span id='Output.t-29' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.div-3' class="method"><span id='div.v-3' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Div.html" title="trait core::ops::Div">Div</a><&'a <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#447-454' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-30' class="type"><span id='Output.t-30' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.div-4' class="method"><span id='div.v-4' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &<a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T>) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Div.html" title="trait core::ops::Div">Div</a><&'a T> 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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#625-632' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-31' class="type"><span id='Output.t-31' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.div-5' class="method"><span id='div.v-5' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Div.html" title="trait core::ops::Div">Div</a><T> for &'a <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#633-640' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-32' class="type"><span id='Output.t-32' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.div-6' class="method"><span id='div.v-6' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<'a, 'b, T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/trait.Div.html" title="trait core::ops::Div">Div</a><&'a T> for &'b <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></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#641-648' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='associatedtype.Output-33' class="type"><span id='Output.t-33' class='invisible'><code>type <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
<h4 id='method.div-7' class="method"><span id='div.v-7' class='invisible'><code>fn <a href='https://doc.rust-lang.org/nightly/core/ops/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &T) -> <a class="struct" href="../num/struct.Complex.html" title="struct num::Complex">Complex</a><T></code></span></h4>
</div><h3 class='impl'><span class='in-band'><code>impl<T> <a class="trait" href="../rustc_serialize/serialize/trait.Encodable.html" title="trait rustc_serialize::serialize::Encodable">Encodable</a> 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="../rustc_serialize/serialize/trait.Encodable.html" title="trait rustc_serialize::serialize::Encodable">Encodable</a>, </span></code></span><span class='out-of-band'><div class='ghost'></div><a class='srclink' href='../src/num_complex/lib.rs.html#63' title='goto source code'>[src]</a></span></h3>
<div class='impl-items'><h4 id='method.encode' class="method"><span id='encode.v' class='invisible'><code>fn <a href='../rustc_serialize/serialize/trait.Encodable.html#tymethod.encode' class='fnname'>encode</a><__ST>(&self, __arg_0: &mut __ST) -> <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.tuple.html">()</a>, __ST::<a class="trait" href="../rustc_serialize/serialize/trait.Encoder.html" title="trait rustc_serialize::serialize::Encoder">Error</a>> <span class="where fmt-newline">where<br> __ST: <a class="trait" href="../rustc_serialize/serialize/trait.Encoder.html" title="trait rustc_serialize::serialize::Encoder">Encoder</a>, </span></code></span></h4>
</div></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>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
<dt>+</dt>
<dd>Collapse/expand 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="../jquery.js"></script>
<script src="../main.js"></script>
<script defer src="../search-index.js"></script>
</body>
</html>