pub struct NcsDisassemblyOptions {
pub internal_names: bool,
pub max_string_length: usize,
pub labels: bool,
pub offsets: bool,
pub local_offsets: bool,
pub source_weave: bool,
}Expand description
Options controlling NCS disassembly rendering.
Fields§
§internal_names: boolRender upstream internal enum names instead of canonical mnemonics.
max_string_length: usizeMaximum string payload shown before truncation markers are appended.
labels: boolEmit synthetic labels for jump targets.
offsets: boolInclude instruction byte offsets in rendered text output.
local_offsets: boolInclude per-function local offsets when NDB debug info is available.
source_weave: boolWeave source lines into output when debug line info and source text are available.
Trait Implementations§
Source§impl Clone for NcsDisassemblyOptions
impl Clone for NcsDisassemblyOptions
Source§fn clone(&self) -> NcsDisassemblyOptions
fn clone(&self) -> NcsDisassemblyOptions
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 NcsDisassemblyOptions
impl Debug for NcsDisassemblyOptions
Source§impl Default for NcsDisassemblyOptions
impl Default for NcsDisassemblyOptions
Source§impl Hash for NcsDisassemblyOptions
impl Hash for NcsDisassemblyOptions
Source§impl PartialEq for NcsDisassemblyOptions
impl PartialEq for NcsDisassemblyOptions
impl Copy for NcsDisassemblyOptions
impl Eq for NcsDisassemblyOptions
impl StructuralPartialEq for NcsDisassemblyOptions
Auto Trait Implementations§
impl Freeze for NcsDisassemblyOptions
impl RefUnwindSafe for NcsDisassemblyOptions
impl Send for NcsDisassemblyOptions
impl Sync for NcsDisassemblyOptions
impl Unpin for NcsDisassemblyOptions
impl UnsafeUnpin for NcsDisassemblyOptions
impl UnwindSafe for NcsDisassemblyOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.