start

Function start 

Source
pub fn start<T: Send + 'static>(
    name: impl Into<String>,
    func: impl FnOnce() -> T + Send + 'static,
) -> Thread<T>
Expand description

Starts running an operation on a new thread.