#thread #spawn #plugin #decorator

nightly macro thread_spawn

A plugin for authoring functions that spawn threads

4 releases (breaking)

Uses old Rust 2015

0.4.0 Jun 13, 2018
0.3.0 May 16, 2018
0.2.0 May 16, 2018
0.1.0 May 15, 2018

#15 in #decorator

MIT/Apache

5KB
61 lines

thread_spawn

Write Rust functions that spawn threads and implicitly return JoinHandles.

#![feature(plugin, proc_macro)]

extern crate thread_spawn;

use thread_spawn::thread_spawn;

#[thread_spawn]
fn foo(a: u8, b: u8, (c, _): (u8, u8)) -> bool {
    assert!(a + b + c == 5);
    5 - c == b
}

fn main() {
    let mut x = 0;
    let mut y = 1;
    let res = foo(x, y, (4, 0)).join(); // explicit join call

    match res {
        Ok(res) => println!("result: {:?}", res),
        Err(err) => panic!("Thread panicked: {:?}", err),
    }
}

Upsides:

  • Automatically names the thread after the spawning function so you have improved error messages.
    • Help wanted: Make the syntax `#[thread_spawn(name("thread {}", arg_or_expression)] work
  • Mirrors the async keyword, conceptually.
  • Fewer keystrokes!

License

MIT or Apache-2.0, at your option.

Dependencies

~2MB
~46K SLoC