package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. address : string;
    (*

    The address of the first byte of data returned. Treated as a hex value if prefixed with '0x', or as a decimal value otherwise.

    *)
  2. unreadable_bytes : int option;
    (*

    The number of unreadable bytes encountered after the last successfully read byte. This can be used to determine the number of bytes that must be skipped before a subsequent 'readMemory' request will succeed.

    *)
  3. data : string option;
    (*

    The bytes read from memory, encoded using base64.

    *)
}
val make : address:string -> ?unreadable_bytes:int option -> ?data:string option -> unit -> t
val to_yojson : t -> Yojson.Safe.t