Skip to content

Commit a2f7627

Browse files
GH Actions RunnerGH Actions Runner
GH Actions Runner
authored and
GH Actions Runner
committed
publish: Merge pull request #7 from simonsan/mdbook
generated from commit c40be4b
0 parents  commit a2f7627

File tree

71 files changed

+13678
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+13678
-0
lines changed

html/.nojekyll

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This file makes sure that Github Pages doesn't process mdBook's output.

html/404.html

Lines changed: 226 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,226 @@
1+
<!DOCTYPE HTML>
2+
<html lang="en" class="sidebar-visible no-js rust">
3+
<head>
4+
<!-- Book generated using mdBook -->
5+
<meta charset="UTF-8">
6+
<title></title>
7+
8+
9+
<base href="/">
10+
11+
12+
13+
<!-- Custom HTML head -->
14+
15+
16+
17+
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
18+
<meta name="description" content="Guide for standard library developers">
19+
<meta name="viewport" content="width=device-width, initial-scale=1">
20+
<meta name="theme-color" content="#ffffff" />
21+
22+
23+
<link rel="icon" href="favicon.svg">
24+
25+
26+
<link rel="shortcut icon" href="favicon.png">
27+
28+
<link rel="stylesheet" href="css/variables.css">
29+
<link rel="stylesheet" href="css/general.css">
30+
<link rel="stylesheet" href="css/chrome.css">
31+
32+
<link rel="stylesheet" href="css/print.css" media="print">
33+
34+
35+
<!-- Fonts -->
36+
<link rel="stylesheet" href="FontAwesome/css/font-awesome.css">
37+
38+
<link rel="stylesheet" href="fonts/fonts.css">
39+
40+
41+
<!-- Highlight.js Stylesheets -->
42+
<link rel="stylesheet" href="highlight.css">
43+
<link rel="stylesheet" href="tomorrow-night.css">
44+
<link rel="stylesheet" href="ayu-highlight.css">
45+
46+
<!-- Custom theme stylesheets -->
47+
48+
49+
50+
</head>
51+
<body>
52+
<!-- Provide site root to javascript -->
53+
<script type="text/javascript">
54+
var path_to_root = "";
55+
var default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? "navy" : "rust";
56+
</script>
57+
58+
<!-- Work around some values being stored in localStorage wrapped in quotes -->
59+
<script type="text/javascript">
60+
try {
61+
var theme = localStorage.getItem('mdbook-theme');
62+
var sidebar = localStorage.getItem('mdbook-sidebar');
63+
64+
if (theme.startsWith('"') && theme.endsWith('"')) {
65+
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
66+
}
67+
68+
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
69+
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
70+
}
71+
} catch (e) { }
72+
</script>
73+
74+
<!-- Set the theme before any content is loaded, prevents flash -->
75+
<script type="text/javascript">
76+
var theme;
77+
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
78+
if (theme === null || theme === undefined) { theme = default_theme; }
79+
var html = document.querySelector('html');
80+
html.classList.remove('no-js')
81+
html.classList.remove('rust')
82+
html.classList.add(theme);
83+
html.classList.add('js');
84+
</script>
85+
86+
<!-- Hide / unhide sidebar before it is displayed -->
87+
<script type="text/javascript">
88+
var html = document.querySelector('html');
89+
var sidebar = 'hidden';
90+
if (document.body.clientWidth >= 1080) {
91+
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
92+
sidebar = sidebar || 'visible';
93+
}
94+
html.classList.remove('sidebar-visible');
95+
html.classList.add("sidebar-" + sidebar);
96+
</script>
97+
98+
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
99+
<div class="sidebar-scrollbox">
100+
<ol class="chapter"><li class="chapter-item expanded affix "><a href="about-this-guide.html">About this guide</a></li><li class="chapter-item expanded affix "><a href="getting-started.html">Getting started</a></li><li class="chapter-item expanded affix "><a href="reviewer-checklist.html">Reviewer checklist</a></li><li class="spacer"></li><li class="chapter-item expanded "><a href="feature-lifecycle/summary.html"><strong aria-hidden="true">1.</strong> The feature lifecycle</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="feature-lifecycle/new-unstable-features.html"><strong aria-hidden="true">1.1.</strong> Landing new features</a></li><li class="chapter-item expanded "><a href="feature-lifecycle/tracking-issues.html"><strong aria-hidden="true">1.2.</strong> Using tracking issues</a></li><li class="chapter-item expanded "><a href="feature-lifecycle/stabilization.html"><strong aria-hidden="true">1.3.</strong> Stabilizing features</a></li><li class="chapter-item expanded "><a href="feature-lifecycle/deprecation.html"><strong aria-hidden="true">1.4.</strong> Deprecating features</a></li><li class="spacer"></li></ol></li><li class="chapter-item expanded "><a href="code-considerations/summary.html"><strong aria-hidden="true">2.</strong> Code considerations</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="code-considerations/design/summary.html"><strong aria-hidden="true">2.1.</strong> Design</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="code-considerations/design/public-apis.html"><strong aria-hidden="true">2.1.1.</strong> Public APIs</a></li></ol></li><li class="chapter-item expanded "><a href="code-considerations/breaking-changes/summary.html"><strong aria-hidden="true">2.2.</strong> Breaking changes</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="code-considerations/breaking-changes/behavior.html"><strong aria-hidden="true">2.2.1.</strong> Breakage from changing behavior</a></li><li class="chapter-item expanded "><a href="code-considerations/breaking-changes/new-trait-impls.html"><strong aria-hidden="true">2.2.2.</strong> Breakage from new trait impls</a></li><li class="chapter-item expanded "><a href="code-considerations/breaking-changes/fundamental.html"><strong aria-hidden="true">2.2.3.</strong> #[fundamental] types</a></li></ol></li><li class="chapter-item expanded "><a href="code-considerations/safety-and-soundness/summary.html"><strong aria-hidden="true">2.3.</strong> Safety and soundness</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="code-considerations/safety-and-soundness/generics-and-unsafe.html"><strong aria-hidden="true">2.3.1.</strong> Generics and unsafe</a></li><li class="chapter-item expanded "><a href="code-considerations/safety-and-soundness/may-dangle.html"><strong aria-hidden="true">2.3.2.</strong> Drop and #[may_dangle]</a></li><li class="chapter-item expanded "><a href="code-considerations/safety-and-soundness/mem-and-exclusive-refs.html"><strong aria-hidden="true">2.3.3.</strong> std::mem and exclusive references</a></li></ol></li><li class="chapter-item expanded "><a href="code-considerations/using-unstable-lang/summary.html"><strong aria-hidden="true">2.4.</strong> Using unstable language features</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="code-considerations/using-unstable-lang/const-generics.html"><strong aria-hidden="true">2.4.1.</strong> Const generics</a></li><li class="chapter-item expanded "><a href="code-considerations/using-unstable-lang/specialization.html"><strong aria-hidden="true">2.4.2.</strong> Specialization</a></li></ol></li><li class="chapter-item expanded "><a href="code-considerations/performance/summary.html"><strong aria-hidden="true">2.5.</strong> Performance</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="code-considerations/performance/inline.html"><strong aria-hidden="true">2.5.1.</strong> When to #[inline]</a></li><li class="spacer"></li></ol></li></ol></li><li class="chapter-item expanded "><a href="tools-and-bots/summary.html"><strong aria-hidden="true">3.</strong> Tools and bots</a></li><li><ol class="section"><li class="chapter-item expanded "><a href="tools-and-bots/bors.html"><strong aria-hidden="true">3.1.</strong> @bors</a></li><li class="chapter-item expanded "><a href="tools-and-bots/timer.html"><strong aria-hidden="true">3.2.</strong> @rust-timer</a></li><li class="chapter-item expanded "><a href="tools-and-bots/crater.html"><strong aria-hidden="true">3.3.</strong> @craterbot</a></li></ol></li></ol>
101+
</div>
102+
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
103+
</nav>
104+
105+
<div id="page-wrapper" class="page-wrapper">
106+
107+
<div class="page">
108+
109+
<div id="menu-bar-hover-placeholder"></div>
110+
<div id="menu-bar" class="menu-bar sticky bordered">
111+
<div class="left-buttons">
112+
<button id="sidebar-toggle" class="icon-button" type="button" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
113+
<i class="fa fa-bars"></i>
114+
</button>
115+
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
116+
<i class="fa fa-paint-brush"></i>
117+
</button>
118+
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
119+
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
120+
<li role="none"><button role="menuitem" class="theme" id="rust">Rust (default)</button></li>
121+
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
122+
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
123+
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
124+
</ul>
125+
126+
<button id="search-toggle" class="icon-button" type="button" title="Search. (Shortkey: s)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="S" aria-controls="searchbar">
127+
<i class="fa fa-search"></i>
128+
</button>
129+
130+
</div>
131+
132+
<h1 class="menu-title">Standard library developers Guide</h1>
133+
134+
<div class="right-buttons">
135+
136+
<a href="print.html" title="Print this book" aria-label="Print this book">
137+
<i id="print-button" class="fa fa-print"></i>
138+
</a>
139+
140+
141+
<a href="https://github.com/rust-lang/std-dev-guide" title="Git repository" aria-label="Git repository">
142+
<i id="git-repository-button" class="fa fa-github"></i>
143+
</a>
144+
145+
</div>
146+
</div>
147+
148+
149+
<div id="search-wrapper" class="hidden">
150+
<form id="searchbar-outer" class="searchbar-outer">
151+
<input type="search" name="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
152+
</form>
153+
<div id="searchresults-outer" class="searchresults-outer hidden">
154+
<div id="searchresults-header" class="searchresults-header"></div>
155+
<ul id="searchresults">
156+
</ul>
157+
</div>
158+
</div>
159+
160+
161+
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
162+
<script type="text/javascript">
163+
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
164+
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
165+
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
166+
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
167+
});
168+
</script>
169+
170+
<div id="content" class="content">
171+
<main>
172+
<h1><a class="header" href="#document-not-found-404" id="document-not-found-404">Document not found (404)</a></h1>
173+
<p>This URL is invalid, sorry. Please use the navigation bar or search to continue.</p>
174+
175+
</main>
176+
177+
<nav class="nav-wrapper" aria-label="Page navigation">
178+
<!-- Mobile navigation buttons -->
179+
180+
181+
182+
183+
<div style="clear: both"></div>
184+
</nav>
185+
</div>
186+
</div>
187+
188+
<nav class="nav-wide-wrapper" aria-label="Page navigation">
189+
190+
191+
192+
</nav>
193+
194+
</div>
195+
196+
197+
198+
199+
200+
201+
202+
203+
<script type="text/javascript">
204+
window.playground_copyable = true;
205+
</script>
206+
207+
208+
209+
210+
211+
<script src="elasticlunr.min.js" type="text/javascript" charset="utf-8"></script>
212+
<script src="mark.min.js" type="text/javascript" charset="utf-8"></script>
213+
<script src="searcher.js" type="text/javascript" charset="utf-8"></script>
214+
215+
216+
<script src="clipboard.min.js" type="text/javascript" charset="utf-8"></script>
217+
<script src="highlight.js" type="text/javascript" charset="utf-8"></script>
218+
<script src="book.js" type="text/javascript" charset="utf-8"></script>
219+
220+
<!-- Custom JS scripts -->
221+
222+
223+
224+
225+
</body>
226+
</html>

html/FontAwesome/css/font-awesome.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
162 KB
Binary file not shown.
162 KB
Binary file not shown.

0 commit comments

Comments
 (0)