Initial docs commit

This commit is contained in:
Uttarayan Mondal
2021-03-15 01:27:34 +05:30
commit d5ecda4c73
20211 changed files with 1370362 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
initSidebarItems({"fn":[["block_in_place","Runs the provided blocking function on the current thread without blocking the executor."],["spawn","Spawns a new asynchronous task, returning a `JoinHandle` for it."],["spawn_blocking","Runs the provided closure on a thread where blocking is acceptable."],["spawn_local","Spawns a `!Send` future on the local task set."],["unconstrained","Turn off cooperative scheduling for a future. The future will never be forced to yield by Tokio. Using this exposes your service to starvation if the unconstrained future never yields otherwise."],["yield_now","Yields execution back to the Tokio runtime."]],"struct":[["JoinError","Task failed to execute to completion."],["JoinHandle","An owned permission to join on a task (await its termination)."],["LocalKey","A key for task-local data."],["LocalSet","A set of tasks which are executed on the same thread."],["Unconstrained","Future for the `unconstrained` method."]]});