#[repr(C)]pub struct BNDisassemblyTextLine {
pub addr: u64,
pub instrIndex: usize,
pub tokens: *mut BNInstructionTextToken,
pub count: usize,
pub highlight: BNHighlightColor,
pub tags: *mut *mut BNTag,
pub tagCount: usize,
pub typeInfo: BNDisassemblyTextLineTypeInfo,
}Fields§
§addr: u64§instrIndex: usize§tokens: *mut BNInstructionTextToken§count: usize§highlight: BNHighlightColor§tagCount: usize§typeInfo: BNDisassemblyTextLineTypeInfoTrait Implementations§
Source§impl Clone for BNDisassemblyTextLine
impl Clone for BNDisassemblyTextLine
Source§fn clone(&self) -> BNDisassemblyTextLine
fn clone(&self) -> BNDisassemblyTextLine
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 moreSource§impl Debug for BNDisassemblyTextLine
impl Debug for BNDisassemblyTextLine
Source§impl Default for BNDisassemblyTextLine
impl Default for BNDisassemblyTextLine
impl Copy for BNDisassemblyTextLine
Auto Trait Implementations§
impl Freeze for BNDisassemblyTextLine
impl RefUnwindSafe for BNDisassemblyTextLine
impl !Send for BNDisassemblyTextLine
impl !Sync for BNDisassemblyTextLine
impl Unpin for BNDisassemblyTextLine
impl UnwindSafe for BNDisassemblyTextLine
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