pub fn run_with_gil<R, F>(f: F) -> Rwhere
F: FnOnce() -> R,Available on crate feature
object only.Expand description
Run the given function while holding the GIL.
This is sometimes used to avoid the overhead of repeatedly releasing and acquiring the GIL.