pub struct DisassemblyTextLine {
pub address: u64,
pub instruction_index: usize,
pub tokens: Vec<InstructionTextToken>,
pub highlight: HighlightColor,
pub tags: Vec<Ref<Tag>>,
pub type_info: DisassemblyTextLineTypeInfo,
}
Fields§
§address: u64
§instruction_index: usize
§tokens: Vec<InstructionTextToken>
§highlight: HighlightColor
§type_info: DisassemblyTextLineTypeInfo
Implementations§
source§impl DisassemblyTextLine
impl DisassemblyTextLine
pub fn new(tokens: Vec<InstructionTextToken>) -> Self
Trait Implementations§
source§impl Clone for DisassemblyTextLine
impl Clone for DisassemblyTextLine
source§fn clone(&self) -> DisassemblyTextLine
fn clone(&self) -> DisassemblyTextLine
Returns a copy 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 moresource§impl Debug for DisassemblyTextLine
impl Debug for DisassemblyTextLine
source§impl Default for DisassemblyTextLine
impl Default for DisassemblyTextLine
source§fn default() -> DisassemblyTextLine
fn default() -> DisassemblyTextLine
Returns the “default value” for a type. Read more
source§impl Display for DisassemblyTextLine
impl Display for DisassemblyTextLine
source§impl From<&str> for DisassemblyTextLine
impl From<&str> for DisassemblyTextLine
source§impl From<String> for DisassemblyTextLine
impl From<String> for DisassemblyTextLine
source§impl PartialEq for DisassemblyTextLine
impl PartialEq for DisassemblyTextLine
impl Eq for DisassemblyTextLine
impl StructuralPartialEq for DisassemblyTextLine
Auto Trait Implementations§
impl Freeze for DisassemblyTextLine
impl RefUnwindSafe for DisassemblyTextLine
impl Send for DisassemblyTextLine
impl Sync for DisassemblyTextLine
impl Unpin for DisassemblyTextLine
impl UnwindSafe for DisassemblyTextLine
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