Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 0c2243f8a1696816431e7210e991fa52 > files > 789

rust-doc-1.35.0-1.mga7.armv7hl.rpm

<!DOCTYPE HTML>
<html lang="en" class="no-js">
    <head>
        <!-- Book generated using mdBook -->
        <meta charset="UTF-8">
        <title>Outdated link: The Rust Programming Language</title>
        <meta name="robots" content="noindex,follow">
        <meta content="text/html; charset=utf-8" http-equiv="Content-Type">

        <base href="">

        <link rel="stylesheet" href="book.css">
        <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
        <link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:500" rel="stylesheet" type="text/css">

        <link rel="stylesheet" href="highlight.css">
        <link rel="stylesheet" href="tomorrow-night.css">
        <link rel="stylesheet" href="ayu-highlight.css">

        <!-- Custom theme stylesheets -->
        
        <link rel="stylesheet" href="src/theme/first-edition.css">
        
    </head>
    <body class="light">
        <div id="page-wrapper" class="page-wrapper">
            <div class="page">
                <div id="draft-warning" class="warning">
    <span class="message">You are reading an <strong>outdated</strong> edition of TRPL. For more, go <a href="../index.html">here</a>.</span>
    <button type="button" id="hide-draft-warning" title="Hide draft warning" class="button">
        <i class="fa fa-times"></i>
    </button>
</div>
<!-- Hide / unhide warning before it is displayed -->
<script type="text/javascript">
var warning = localStorage.getItem('trpl-first-edition-draft-warning');

if (warning === 'hidden') {
    Array
    .from(document.querySelectorAll('#page-wrapper'))
    .forEach(function(block) { block.classList.remove('has-warning'); });
    var elem = document.getElementById("draft-warning");
    elem.parentNode.removeChild(elem);
}

document.addEventListener("DOMContentLoaded", function(event) { 
    document.getElementById("hide-draft-warning").addEventListener("click", function(e) {
        var elem = document.getElementById("draft-warning");
        elem.parentNode.removeChild(elem);

        localStorage.setItem('trpl-first-edition-draft-warning', 'hidden');
    });
});
</script>

                <div id="content" class="content">
                    <main>
                        <a class="header" href="print.html#the-rust-programming-language" id="the-rust-programming-language"><h1>The Rust Programming Language</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/README.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#getting-started" id="getting-started"><h1>Getting Started</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch00-00-introduction.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/getting-started.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#guessing-game" id="guessing-game"><h1>Guessing Game</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch02-00-guessing-game-tutorial.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/guessing-game.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#syntax-and-semantics" id="syntax-and-semantics"><h1>Syntax and Semantics</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch03-00-common-programming-concepts.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/syntax-and-semantics.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#variable-bindings" id="variable-bindings"><h1>Variable Bindings</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/variable-bindings.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#functions" id="functions"><h1>Functions</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch03-03-how-functions-work.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/functions.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#primitive-types" id="primitive-types"><h1>Primitive Types</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch03-02-data-types.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/primitive-types.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#comments" id="comments"><h1>Comments</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch03-04-comments.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/comments.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#if" id="if"><h1>if</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch03-05-control-flow.html#if-expressions">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/if.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#loops" id="loops"><h1>Loops</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch03-05-control-flow.html#repetition-with-loops">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/loops.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#vectors" id="vectors"><h1>Vectors</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch08-01-vectors.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/vectors.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#ownership" id="ownership"><h1>Ownership</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch04-00-understanding-ownership.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/ownership.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#references-and-borrowing" id="references-and-borrowing"><h1>References and Borrowing</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch04-02-references-and-borrowing.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/references-and-borrowing.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#lifetimes" id="lifetimes"><h1>Lifetimes</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch10-03-lifetime-syntax.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/lifetimes.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#mutability" id="mutability"><h1>Mutability</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch03-01-variables-and-mutability.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/mutability.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#structs" id="structs"><h1>Structs</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch05-00-structs.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/structs.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#enums" id="enums"><h1>Enums</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch06-01-defining-an-enum.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/enums.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#match" id="match"><h1>Match</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch06-02-match.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/match.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#patterns" id="patterns"><h1>Patterns</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch18-03-pattern-syntax.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/patterns.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#method-syntax" id="method-syntax"><h1>Method Syntax</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch05-03-method-syntax.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/method-syntax.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#strings" id="strings"><h1>Strings</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch08-02-strings.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/strings.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#generics" id="generics"><h1>Generics</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch10-00-generics.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/generics.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#traits" id="traits"><h1>Traits</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch10-02-traits.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/traits.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#drop" id="drop"><h1>Drop</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch15-03-drop.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/drop.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#if-let" id="if-let"><h1>if let</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch06-03-if-let.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/if-let.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#trait-objects" id="trait-objects"><h1>Trait Objects</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch17-02-trait-objects.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/trait-objects.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#closures" id="closures"><h1>Closures</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch13-01-closures.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/closures.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#universal-function-call-syntax" id="universal-function-call-syntax"><h1>Universal Function Call Syntax</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/ufcs.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#crates-and-modules" id="crates-and-modules"><h1>Crates and Modules</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch07-00-managing-growing-projects-with-packages-crates-and-modules.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/crates-and-modules.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#const-and-static" id="const-and-static"><h1>const and static</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch19-01-unsafe-rust.html#accessing-or-modifying-a-mutable-static-variable">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/const-and-static.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#attributes" id="attributes"><h1>Attributes</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/attributes.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#type-aliases" id="type-aliases"><h1>Type Aliases</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch19-04-advanced-types.html#creating-type-synonyms-with-type-aliases">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/type-aliases.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#casting-between-types" id="casting-between-types"><h1>Casting Between Types</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/casting-between-types.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#associated-types" id="associated-types"><h1>Associated Types</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch19-03-advanced-traits.html#specifying-placeholder-types-in-trait-definitions-with-associated-types">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/associated-types.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#unsized-types" id="unsized-types"><h1>Unsized Types</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/unsized-types.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#operators-and-overloading" id="operators-and-overloading"><h1>Operators and Overloading</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch19-03-advanced-traits.html#default-generic-type-parameters-and-operator-overloading">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/operators-and-overloading.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#deref-coercions" id="deref-coercions"><h1><code>Deref</code> coercions</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch15-02-deref.html#implicit-deref-coercions-with-functions-and-methods">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/deref-coercions.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#macros" id="macros"><h1>Macros</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch19-06-macros.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/macros.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#raw-pointers" id="raw-pointers"><h1>Raw Pointers</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch19-01-unsafe-rust.html#dereferencing-a-raw-pointer">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/raw-pointers.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#unsafe" id="unsafe"><h1>Unsafe</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch19-01-unsafe-rust.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/unsafe.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#effective-rust" id="effective-rust"><h1>Effective Rust</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/effective-rust.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#the-stack-and-the-heap" id="the-stack-and-the-heap"><h1>The Stack and the Heap</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch04-01-what-is-ownership.html#the-stack-and-the-heap">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/the-stack-and-the-heap.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#testing" id="testing"><h1>Testing</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch11-00-testing.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/testing.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#conditional-compilation" id="conditional-compilation"><h1>Conditional Compilation</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/conditional-compilation.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#documentation" id="documentation"><h1>Documentation</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch14-02-publishing-to-crates-io.html#making-useful-documentation-comments">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/documentation.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#iterators" id="iterators"><h1>Iterators</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch13-02-iterators.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/iterators.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#concurrency" id="concurrency"><h1>Concurrency</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch16-00-concurrency.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/concurrency.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#error-handling" id="error-handling"><h1>Error Handling</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch09-00-error-handling.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/error-handling.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#choosing-your-guarantees" id="choosing-your-guarantees"><h1>Choosing your Guarantees</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch15-00-smart-pointers.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/choosing-your-guarantees.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#foreign-function-interface" id="foreign-function-interface"><h1>Foreign Function Interface</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch19-01-unsafe-rust.html#calling-rust-functions-from-other-languages">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/ffi.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#borrow-and-asref" id="borrow-and-asref"><h1>Borrow and AsRef</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch15-00-smart-pointers.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/borrow-and-asref.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#release-channels" id="release-channels"><h1>Release Channels</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/release-channels.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#using-rust-without-the-standard-library" id="using-rust-without-the-standard-library"><h1>Using Rust Without the Standard Library</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/using-rust-without-the-standard-library.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#procedural-macros-and-custom-derive" id="procedural-macros-and-custom-derive"><h1>Procedural Macros (and custom Derive)</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../ch19-06-macros.html?highlight=procedural#procedural-macros-for-generating-code-from-attributes">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/procedural-macros.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#glossary" id="glossary"><h1>Glossary</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/glossary.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#syntax-index" id="syntax-index"><h1>Syntax Index</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/syntax-index.html">find a copy distributed with
Rust
1.30</a>.</p>
<a class="header" href="print.html#bibliography" id="bibliography"><h1>Bibliography</h1></a>
<p>The first edition of the book is no longer distributed with Rust's documentation.</p>
<p>If you came here via a link or web search, you may want to check out <a href="../index.html">the current
version of the book</a> instead.</p>
<p>If you have an internet connection, you can <a href="https://doc.rust-lang.org/1.30.0/book/first-edition/bibliography.html">find a copy distributed with
Rust
1.30</a>.</p>

                    </main>
                </div>
            </div>
        </div>
    </body>
</html>