We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Lua::push
Lua::with_raw_state
1 parent e582e7c commit 5b5f1e4Copy full SHA for 5b5f1e4
src/state.rs
@@ -1856,15 +1856,6 @@ impl Lua {
1856
extra.app_data.remove()
1857
}
1858
1859
- /// Pushes a value that implements `IntoLua` onto the Lua stack.
1860
- ///
1861
- /// Uses 2 stack spaces, does not call checkstack.
1862
- #[doc(hidden)]
1863
- #[inline(always)]
1864
- pub unsafe fn push(&self, value: impl IntoLua) -> Result<()> {
1865
- self.lock().push(value)
1866
- }
1867
-
1868
/// Returns an internal `Poll::Pending` constant used for executing async callbacks.
1869
#[cfg(feature = "async")]
1870
#[doc(hidden)]
0 commit comments