Struct sentry::protocol::LogEntry [] [src]

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 PartialEq<LogEntry> for LogEntry
[src]

[src]

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

[src]

This method tests for !=.

impl<'de> Deserialize<'de> for LogEntry
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl Clone for LogEntry
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for LogEntry
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl Debug for LogEntry
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for LogEntry
[src]

[src]

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

Auto Trait Implementations

impl Send for LogEntry

impl Sync for LogEntry