pub type pm_local_variable_target_node_t = pm_local_variable_target_node;Expand description
LocalVariableTargetNode
Represents writing to a local variable in a context that doesn’t have an explicit value.
foo, bar = baz
^^^ ^^^ foo => baz
^^^Type: ::PM_LOCAL_VARIABLE_TARGET_NODE
@extends pm_node_t
Aliased Type§
#[repr(C)]pub struct pm_local_variable_target_node_t {
pub base: pm_node,
pub name: u32,
pub depth: u32,
}Fields§
§base: pm_nodeThe embedded base node.
name: u32LocalVariableTargetNode#name
depth: u32LocalVariableTargetNode#depth