pub enum Callback<'lua> {
VimScript(String),
Lua(LuaFunction<'lua>),
}Variants
VimScript(String)
Lua(LuaFunction<'lua>)
Implementations
Trait Implementations
sourceimpl<'lua> From<Function<'lua>> for Callback<'lua>
impl<'lua> From<Function<'lua>> for Callback<'lua>
sourcefn from(original: LuaFunction<'lua>) -> Callback<'lua>
fn from(original: LuaFunction<'lua>) -> Callback<'lua>
Converts to this type from the input type.
Auto Trait Implementations
impl<'lua> !RefUnwindSafe for Callback<'lua>
impl<'lua> !Send for Callback<'lua>
impl<'lua> !Sync for Callback<'lua>
impl<'lua> Unpin for Callback<'lua>
impl<'lua> !UnwindSafe for Callback<'lua>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<'lua, T> ToLuaMulti<'lua> for T where
T: ToLua<'lua>,
impl<'lua, T> ToLuaMulti<'lua> for T where
T: ToLua<'lua>,
sourcefn to_lua_multi(self, lua: &'lua Lua) -> Result<MultiValue<'lua>, Error>
fn to_lua_multi(self, lua: &'lua Lua) -> Result<MultiValue<'lua>, Error>
Performs the conversion.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more