Crate nonblocking

Source
Expand description

Turn an async function to a sync non-blocking function.

Functionsยง

non_blocking
Attempt to resolve a future without blocking. Return WouldBlock error if the future will block. Return the resolved value otherwise.
non_blocking_result
Similar to non_blocking, but unwraps a level of Result.