Function create_thread_and_run

Source
pub fn create_thread_and_run<C, Fut, B, E>(
    client: C,
    request: &CreateThreadAndRunRequest,
) -> CreateThreadAndRun<Fut, B, E> 
where C: FnOnce(Request<String>) -> Fut, Fut: Future<Output = Result<Response<B>, E>>, B: Body,
Expand description

Create a thread and run it in one request.