pub struct ParsedComplexVariable {
pub var_name_index: u16,
pub type_index: u16,
pub access_path: String,
pub status: u8,
pub data: Vec<u8>,
}Expand description
A parsed complex variable from PrintComplexVariable instruction data
Fields§
§var_name_index: u16§type_index: u16§access_path: String§status: u8§data: Vec<u8>Trait Implementations§
Source§impl Clone for ParsedComplexVariable
impl Clone for ParsedComplexVariable
Source§fn clone(&self) -> ParsedComplexVariable
fn clone(&self) -> ParsedComplexVariable
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 ParsedComplexVariable
impl RefUnwindSafe for ParsedComplexVariable
impl Send for ParsedComplexVariable
impl Sync for ParsedComplexVariable
impl Unpin for ParsedComplexVariable
impl UnwindSafe for ParsedComplexVariable
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