pub enum MethodSubSection<'a> {
Comment(&'a str),
Parameter {
lv_index: u32,
var_name_a: Option<&'a str>,
var_name_b: Option<&'a str>,
extra_ns_var_names: Vec<&'a str>,
method_parameter_sub_sections: Vec<&'a str>,
},
Variable {
lv_index: u32,
lv_start_offset: u32,
optional_lvt_index: i32,
var_name_a: Option<&'a str>,
var_name_b: Option<&'a str>,
extra_ns_var_names: Vec<&'a str>,
method_variable_sub_sections: Vec<&'a str>,
},
}Expand description
§Example
p 1 param_0 x
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for MethodSubSection<'a>
impl<'a> RefUnwindSafe for MethodSubSection<'a>
impl<'a> Send for MethodSubSection<'a>
impl<'a> Sync for MethodSubSection<'a>
impl<'a> Unpin for MethodSubSection<'a>
impl<'a> UnwindSafe for MethodSubSection<'a>
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