Trait pyo3_async::UnbindGil

source ·
pub trait UnbindGil: Sized {
    // Provided method
    fn unbind_gil(self) -> GilUnbound<Self> { ... }
}
Expand description

Extension trait to unbind GIL while polling Future or [Stream].

It is implemented for every types.

Provided Methods§

source

fn unbind_gil(self) -> GilUnbound<Self>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> UnbindGil for T