pub struct LuaModuleTrace {
pub module: String,
pub api_calls: Vec<LuaApiCall>,
}Expand description
Placeholder for a traced module export that can later be turned into a Lust extern stub.
Fields§
§module: String§api_calls: Vec<LuaApiCall>Trait Implementations§
Source§impl Clone for LuaModuleTrace
impl Clone for LuaModuleTrace
Source§fn clone(&self) -> LuaModuleTrace
fn clone(&self) -> LuaModuleTrace
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 LuaModuleTrace
impl RefUnwindSafe for LuaModuleTrace
impl Send for LuaModuleTrace
impl Sync for LuaModuleTrace
impl Unpin for LuaModuleTrace
impl UnsafeUnpin for LuaModuleTrace
impl UnwindSafe for LuaModuleTrace
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