pub fn create_thread_post<F, U>(
    f: F,
    thread_id: TID
) -> Result<WaitHandle<U>, Error>where
    F: FnOnce() -> U,
    F: Send + 'static,
    U: Send + 'static,
Expand description

Spawn a new thread with the given thread ID.