clfft 0.3.2

Bindings for clFFT, a FFT library for OpenCL.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
<!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 `future` mod in crate `futures`.">
    <meta name="keywords" content="rust, rustlang, rust-lang, future">

    <title>futures::future - 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">
    

    
    
</head>
<body class="rustdoc mod">
    <!--[if lte IE 8]>
    <div class="warning">
        This old browser is unsupported and will most likely display funky
        things.
    </div>
    <![endif]-->

    

    <nav class="sidebar">
        
        <p class='location'><a href='../index.html'>futures</a></p><script>window.sidebarCurrent = {name: 'future', ty: 'mod', 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'>Module <a href='../index.html'>futures</a>::<wbr><a class="mod" href=''>future</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'>&#x2212;</span>]
                   </a>
               </span><a class='srclink' href='../../src/futures/future/mod.rs.html#1-1046' title='goto source code'>[src]</a></span></h1>
<div class='docblock'><p>Futures</p>
<p>This module contains the <code>Future</code> trait and a number of adaptors for this
trait. See the crate docs, and the docs for <code>Future</code>, for full detail.</p>
</div><h2 id='structs' class='section-header'><a href="#structs">Structs</a></h2>
<table>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.AndThen.html"

                                  title='struct futures::future::AndThen'>AndThen</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>and_then</code> combinator, chaining a computation onto the end of
another future which completes successfully.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.CatchUnwind.html"

                                  title='struct futures::future::CatchUnwind'>CatchUnwind</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>catch_unwind</code> combinator.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Empty.html"

                                  title='struct futures::future::Empty'>Empty</a></td>
                           <td class='docblock-short'>
                                <p>A future which is never resolved.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.ExecuteError.html"

                                  title='struct futures::future::ExecuteError'>ExecuteError</a></td>
                           <td class='docblock-short'>
                                <p>Errors returned from the <code>Spawn::spawn</code> function.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Flatten.html"

                                  title='struct futures::future::Flatten'>Flatten</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>flatten</code> combinator, flattening a future-of-a-future to get just
the result of the final future.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.FlattenStream.html"

                                  title='struct futures::future::FlattenStream'>FlattenStream</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>flatten_stream</code> combinator, flattening a
future-of-a-stream to get just the result of the final stream as a stream.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.FromErr.html"

                                  title='struct futures::future::FromErr'>FromErr</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>from_err</code> combinator, changing the error type of a future.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Fuse.html"

                                  title='struct futures::future::Fuse'>Fuse</a></td>
                           <td class='docblock-short'>
                                <p>A future which &quot;fuses&quot; a future once it's been resolved.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.FutureResult.html"

                                  title='struct futures::future::FutureResult'>FutureResult</a></td>
                           <td class='docblock-short'>
                                <p>A future representing a value that is immediately ready.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.IntoStream.html"

                                  title='struct futures::future::IntoStream'>IntoStream</a></td>
                           <td class='docblock-short'>
                                <p>Future that forwards one element from the underlying future
(whether it is success of error) and emits EOF after that.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Join.html"

                                  title='struct futures::future::Join'>Join</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>join</code> combinator, waiting for two futures to
complete.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Join3.html"

                                  title='struct futures::future::Join3'>Join3</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>join3</code> combinator, waiting for three futures to
complete.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Join4.html"

                                  title='struct futures::future::Join4'>Join4</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>join4</code> combinator, waiting for four futures to
complete.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Join5.html"

                                  title='struct futures::future::Join5'>Join5</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>join5</code> combinator, waiting for five futures to
complete.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.JoinAll.html"

                                  title='struct futures::future::JoinAll'>JoinAll</a></td>
                           <td class='docblock-short'>
                                <p>A future which takes a list of futures and resolves with a vector of the
completed values.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Lazy.html"

                                  title='struct futures::future::Lazy'>Lazy</a></td>
                           <td class='docblock-short'>
                                <p>A future which defers creation of the actual future until a callback is
scheduled.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.LoopFn.html"

                                  title='struct futures::future::LoopFn'>LoopFn</a></td>
                           <td class='docblock-short'>
                                <p>A future implementing a tail-recursive loop.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Map.html"

                                  title='struct futures::future::Map'>Map</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>map</code> combinator, changing the type of a future.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.MapErr.html"

                                  title='struct futures::future::MapErr'>MapErr</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>map_err</code> combinator, changing the error type of a future.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.OrElse.html"

                                  title='struct futures::future::OrElse'>OrElse</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>or_else</code> combinator, chaining a computation onto the end of
a future which fails with an error.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.PollFn.html"

                                  title='struct futures::future::PollFn'>PollFn</a></td>
                           <td class='docblock-short'>
                                <p>A future which adapts a function returning <code>Poll</code>.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Select.html"

                                  title='struct futures::future::Select'>Select</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>select</code> combinator, waiting for one of two futures to
complete.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Select2.html"

                                  title='struct futures::future::Select2'>Select2</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>merge</code> combinator, waiting for one of two differently-typed
futures to complete.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.SelectAll.html"

                                  title='struct futures::future::SelectAll'>SelectAll</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>select_all</code> combinator, waiting for one of any of a list of
futures to complete.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.SelectNext.html"

                                  title='struct futures::future::SelectNext'>SelectNext</a></td>
                           <td class='docblock-short'>
                                <p>Future yielded as the second result in a <code>Select</code> future.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.SelectOk.html"

                                  title='struct futures::future::SelectOk'>SelectOk</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>select_ok</code> combinator, waiting for one of any of a list of
futures to succesfully complete. unlike <code>select_all</code>, this future ignores all
but the last error, if there are any.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Shared.html"

                                  title='struct futures::future::Shared'>Shared</a></td>
                           <td class='docblock-short'>
                                <p>A future that is cloneable and can be polled in multiple threads.
Use Future::shared() method to convert any future into a <code>Shared</code> future.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.SharedError.html"

                                  title='struct futures::future::SharedError'>SharedError</a></td>
                           <td class='docblock-short'>
                                <p>A wrapped error of the original future that is clonable and implements Deref
for ease of use.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.SharedItem.html"

                                  title='struct futures::future::SharedItem'>SharedItem</a></td>
                           <td class='docblock-short'>
                                <p>A wrapped item of the original future that is clonable and implements Deref
for ease of use.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="struct" href="struct.Then.html"

                                  title='struct futures::future::Then'>Then</a></td>
                           <td class='docblock-short'>
                                <p>Future for the <code>then</code> combinator, chaining computations on the end of
another future regardless of its outcome.</p>

                           </td>
                       </tr></table><h2 id='enums' class='section-header'><a href="#enums">Enums</a></h2>
<table>
                       <tr class=' module-item'>
                           <td><a class="enum" href="enum.Either.html"

                                  title='enum futures::future::Either'>Either</a></td>
                           <td class='docblock-short'>
                                <p>Combines two different futures yielding the same item and error
types into a single type.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="enum" href="enum.ExecuteErrorKind.html"

                                  title='enum futures::future::ExecuteErrorKind'>ExecuteErrorKind</a></td>
                           <td class='docblock-short'>
                                <p>Kinds of errors that can be returned from the <code>Execute::spawn</code> function.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="enum" href="enum.Loop.html"

                                  title='enum futures::future::Loop'>Loop</a></td>
                           <td class='docblock-short'>
                                <p>The status of a <code>loop_fn</code> loop.</p>

                           </td>
                       </tr></table><h2 id='traits' class='section-header'><a href="#traits">Traits</a></h2>
<table>
                       <tr class=' module-item'>
                           <td><a class="trait" href="trait.Executor.html"

                                  title='trait futures::future::Executor'>Executor</a></td>
                           <td class='docblock-short'>
                                <p>A trait for types which can spawn fresh futures.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="trait" href="trait.Future.html"

                                  title='trait futures::future::Future'>Future</a></td>
                           <td class='docblock-short'>
                                <p>Trait for types which are a placeholder of a value that may become
available at some later point in time.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="trait" href="trait.FutureFrom.html"

                                  title='trait futures::future::FutureFrom'>FutureFrom</a></td>
                           <td class='docblock-short'>
                                <p>Asynchronous conversion from a type <code>T</code>.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="trait" href="trait.IntoFuture.html"

                                  title='trait futures::future::IntoFuture'>IntoFuture</a></td>
                           <td class='docblock-short'>
                                <p>Class of types which can be converted into a future.</p>

                           </td>
                       </tr></table><h2 id='functions' class='section-header'><a href="#functions">Functions</a></h2>
<table>
                       <tr class=' module-item'>
                           <td><a class="fn" href="fn.empty.html"

                                  title='fn futures::future::empty'>empty</a></td>
                           <td class='docblock-short'>
                                <p>Creates a future which never resolves, representing a computation that never
finishes.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="fn" href="fn.err.html"

                                  title='fn futures::future::err'>err</a></td>
                           <td class='docblock-short'>
                                <p>Creates a &quot;leaf future&quot; from an immediate value of a failed computation.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="fn" href="fn.join_all.html"

                                  title='fn futures::future::join_all'>join_all</a></td>
                           <td class='docblock-short'>
                                <p>Creates a future which represents a collection of the results of the futures
given.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="fn" href="fn.lazy.html"

                                  title='fn futures::future::lazy'>lazy</a></td>
                           <td class='docblock-short'>
                                <p>Creates a new future which will eventually be the same as the one created
by the closure provided.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="fn" href="fn.loop_fn.html"

                                  title='fn futures::future::loop_fn'>loop_fn</a></td>
                           <td class='docblock-short'>
                                <p>Creates a new future implementing a tail-recursive loop.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="fn" href="fn.ok.html"

                                  title='fn futures::future::ok'>ok</a></td>
                           <td class='docblock-short'>
                                <p>Creates a &quot;leaf future&quot; from an immediate value of a finished and
successful computation.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="fn" href="fn.poll_fn.html"

                                  title='fn futures::future::poll_fn'>poll_fn</a></td>
                           <td class='docblock-short'>
                                <p>Creates a new future wrapping around a function returning <code>Poll</code>.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="fn" href="fn.result.html"

                                  title='fn futures::future::result'>result</a></td>
                           <td class='docblock-short'>
                                <p>Creates a new &quot;leaf future&quot; which will resolve with the given result.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="fn" href="fn.select_all.html"

                                  title='fn futures::future::select_all'>select_all</a></td>
                           <td class='docblock-short'>
                                <p>Creates a new future which will select over a list of futures.</p>

                           </td>
                       </tr>
                       <tr class=' module-item'>
                           <td><a class="fn" href="fn.select_ok.html"

                                  title='fn futures::future::select_ok'>select_ok</a></td>
                           <td class='docblock-short'>
                                <p>Creates a new future which will select the first successful future over a list of futures.</p>

                           </td>
                       </tr></table><h2 id='types' class='section-header'><a href="#types">Type Definitions</a></h2>
<table>
                       <tr class=' module-item'>
                           <td><a class="type" href="type.BoxFuture.html"

                                  title='type futures::future::BoxFuture'>BoxFuture</a></td>
                           <td class='docblock-short'>
                                <p>A type alias for <code>Box&lt;Future + Send&gt;</code></p>

                           </td>
                       </tr></table></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>&larrb;</dt>
                    <dd>Move up in search results</dd>
                    <dt>&rarrb;</dt>
                    <dd>Move down in search results</dd>
                    <dt>&#9166;</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 = "futures";
    </script>
    <script src="../../jquery.js"></script>
    <script src="../../main.js"></script>
    <script defer src="../../search-index.js"></script>
</body>
</html>