Struct actix_tools::sentry::sentry_client::protocol::LogEntry[]

pub struct LogEntry {
    pub message: String,
    pub params: Vec<Value>,
}

Represents a log entry message.

A log message is similar to the message attribute on the event itself but can additionally hold optional parameters.

Fields

The log message with parameters replaced by %s

Positional parameters to be inserted into the log entry.

Trait Implementations

impl Serialize for LogEntry

Serialize this value into the given Serde serializer. Read more

impl Clone for LogEntry

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for LogEntry

Returns the "default value" for a type. Read more

impl Debug for LogEntry

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for LogEntry

Deserialize this value from the given Serde deserializer. Read more

impl PartialEq<LogEntry> for LogEntry

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for LogEntry

impl Sync for LogEntry