pub struct LogPacketBody {
    pub log_session_begin: bool,
    pub log_session_end: bool,
    pub text_log: String,
    pub line_number: u32,
    pub file_name: String,
    pub function_name: String,
    pub module_name: String,
    pub thread_name: String,
    pub log_packet_drop_count: u64,
    pub user_system_clock: u64,
    pub process_name: String,
}

Fields

log_session_begin: boollog_session_end: booltext_log: Stringline_number: u32file_name: Stringfunction_name: Stringmodule_name: Stringthread_name: Stringlog_packet_drop_count: u64user_system_clock: u64process_name: String

Implementations

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 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.