@@ -216,6 +216,20 @@ pub use self::local::{LocalKey, LocalKeyState};
216
216
217
217
/// Thread configuration. Provides detailed control over the properties
218
218
/// and behavior of new threads.
219
+ ///
220
+ /// # Examples
221
+ ///
222
+ /// ```
223
+ /// use std::thread;
224
+ ///
225
+ /// let builder = thread::Builder::new();
226
+ ///
227
+ /// let handler = builder.spawn(|| {
228
+ /// // thread code
229
+ /// }).unwrap();
230
+ ///
231
+ /// handler.join().unwrap();
232
+ /// ```
219
233
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
220
234
#[ derive( Debug ) ]
221
235
pub struct Builder {
@@ -228,6 +242,22 @@ pub struct Builder {
228
242
impl Builder {
229
243
/// Generates the base configuration for spawning a thread, from which
230
244
/// configuration methods can be chained.
245
+ ///
246
+ /// # Examples
247
+ ///
248
+ /// ```
249
+ /// use std::thread;
250
+ ///
251
+ /// let builder = thread::Builder::new()
252
+ /// .name("foo".into())
253
+ /// .stack_size(10);
254
+ ///
255
+ /// let handler = builder.spawn(|| {
256
+ /// // thread code
257
+ /// }).unwrap();
258
+ ///
259
+ /// handler.join().unwrap();
260
+ /// ```
231
261
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
232
262
pub fn new ( ) -> Builder {
233
263
Builder {
@@ -241,7 +271,7 @@ impl Builder {
241
271
///
242
272
/// # Examples
243
273
///
244
- /// ```rust
274
+ /// ```
245
275
/// use std::thread;
246
276
///
247
277
/// let builder = thread::Builder::new()
@@ -260,6 +290,14 @@ impl Builder {
260
290
}
261
291
262
292
/// Sets the size of the stack for the new thread.
293
+ ///
294
+ /// # Examples
295
+ ///
296
+ /// ```
297
+ /// use std::thread;
298
+ ///
299
+ /// let builder = thread::Builder::new().stack_size(10);
300
+ /// ```
263
301
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
264
302
pub fn stack_size ( mut self , size : usize ) -> Builder {
265
303
self . stack_size = Some ( size) ;
@@ -275,9 +313,26 @@ impl Builder {
275
313
///
276
314
/// # Errors
277
315
///
278
- /// Unlike the `spawn` free function, this method yields an
279
- /// `io::Result` to capture any failure to create the thread at
316
+ /// Unlike the [ `spawn`] free function, this method yields an
317
+ /// [ `io::Result`] to capture any failure to create the thread at
280
318
/// the OS level.
319
+ ///
320
+ /// [`spawn`]: ../../std/thread/fn.spawn.html
321
+ /// [`io::Result`]: ../../std/io/type.Result.html
322
+ ///
323
+ /// # Examples
324
+ ///
325
+ /// ```
326
+ /// use std::thread;
327
+ ///
328
+ /// let builder = thread::Builder::new();
329
+ ///
330
+ /// let handler = builder.spawn(|| {
331
+ /// // thread code
332
+ /// }).unwrap();
333
+ ///
334
+ /// handler.join().unwrap();
335
+ /// ```
281
336
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
282
337
pub fn spawn < F , T > ( self , f : F ) -> io:: Result < JoinHandle < T > > where
283
338
F : FnOnce ( ) -> T , F : Send + ' static , T : Send + ' static
0 commit comments