pub struct DisassembleArguments {
pub memory_reference: String,
pub offset: Option<u64>,
pub instruction_offset: Option<u64>,
pub instruction_count: u64,
pub resolve_symbols: Option<bool>,
}
Expand description
Arguments for disassemble
request.
Fields§
§memory_reference: String
Memory reference to the base location containing the instructions to disassemble.
offset: Option<u64>
Offset (in bytes) to be applied to the reference location before disassembling. Can be negative.
instruction_offset: Option<u64>
Offset (in instructions) to be applied after the byte offset (if any) before disassembling. Can be negative.
instruction_count: u64
Number of instructions to disassemble starting at the specified location and offset. An adapter must return exactly this number of instructions - any unavailable instructions should be replaced with an implementation-defined ‘invalid instruction’ value.
resolve_symbols: Option<bool>
If true, the adapter should attempt to resolve memory addresses and other values to symbolic names.
Trait Implementations§
Source§impl Clone for DisassembleArguments
impl Clone for DisassembleArguments
Source§fn clone(&self) -> DisassembleArguments
fn clone(&self) -> DisassembleArguments
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 DisassembleArguments
impl Debug for DisassembleArguments
Source§impl<'de> Deserialize<'de> for DisassembleArguments
impl<'de> Deserialize<'de> for DisassembleArguments
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DisassembleArguments
impl RefUnwindSafe for DisassembleArguments
impl Send for DisassembleArguments
impl Sync for DisassembleArguments
impl Unpin for DisassembleArguments
impl UnwindSafe for DisassembleArguments
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