Struct rdbg_client::Message
source · pub struct Message {
pub time: u64,
pub thread_id: String,
pub filename: String,
pub line: u32,
pub payload: MsgPayload,
}Expand description
The primary structure. Represents all the fields of debug information as received from the debugged program
Fields§
§time: u64Milliseconds since epoch at the exact moment the debug message was triggered in the remote program
thread_id: StringThe thread ID that invoked the message in the remote program
filename: StringThe filename that invoked the message in the remote program
line: u32The line number at which the message was invoked in the remote program
payload: MsgPayloadThe message OR expression values sent from the remote program