Struct sentry_types::protocol::v7::Breadcrumb[][src]

pub struct Breadcrumb {
    pub timestamp: DateTime<Utc>,
    pub ty: String,
    pub category: Option<String>,
    pub level: Level,
    pub message: Option<String>,
    pub data: Map<String, Value>,
    pub other: Map<String, Value>,
}

Represents a single breadcrumb.

Fields

The timestamp of the breadcrumb. This is required.

The type of the breadcrumb.

The optional category of the breadcrumb.

The non optional level of the breadcrumb. It defaults to info.

An optional human readbale message for the breadcrumb.

Arbitrary breadcrumb data that should be send along.

Additional arbitrary fields for forwards compatibility.

Trait Implementations

impl Debug for Breadcrumb
[src]

Formats the value using the given formatter. Read more

impl Clone for Breadcrumb
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Breadcrumb
[src]

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

This method tests for !=.

impl Default for Breadcrumb
[src]

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

Auto Trait Implementations

impl Send for Breadcrumb

impl Sync for Breadcrumb