pub struct VariableDebugInfo {
pub name: String,
pub local_index: u32,
pub type_desc: String,
}Expand description
Debug information for a variable
Fields§
§name: StringVariable name
local_index: u32WASM local index
type_desc: StringType description
Trait Implementations§
Source§impl Clone for VariableDebugInfo
impl Clone for VariableDebugInfo
Source§fn clone(&self) -> VariableDebugInfo
fn clone(&self) -> VariableDebugInfo
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 VariableDebugInfo
impl RefUnwindSafe for VariableDebugInfo
impl Send for VariableDebugInfo
impl Sync for VariableDebugInfo
impl Unpin for VariableDebugInfo
impl UnwindSafe for VariableDebugInfo
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