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: u64

Milliseconds since epoch at the exact moment the debug message was triggered in the remote program

§thread_id: String

The thread ID that invoked the message in the remote program

§filename: String

The filename that invoked the message in the remote program

§line: u32

The line number at which the message was invoked in the remote program

§payload: MsgPayload

The message OR expression values sent from the remote program

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.