pub struct LuaApiCall {
pub function: String,
pub args: Vec<String>,
}Expand description
Describes a traced call into the Lua 5.1 API while evaluating luaopen_*.
Fields§
§function: String§args: Vec<String>Trait Implementations§
Source§impl Clone for LuaApiCall
impl Clone for LuaApiCall
Source§fn clone(&self) -> LuaApiCall
fn clone(&self) -> LuaApiCall
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LuaApiCall
impl RefUnwindSafe for LuaApiCall
impl Send for LuaApiCall
impl Sync for LuaApiCall
impl Unpin for LuaApiCall
impl UnwindSafe for LuaApiCall
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more