Enum sentry_tracing::EventMapping
source · pub enum EventMapping {
Ignore,
Breadcrumb(Breadcrumb),
Event(Event<'static>),
}Expand description
The type of data Sentry should ingest for a Event
Variants§
Ignore
Ignore the Event
Breadcrumb(Breadcrumb)
Adds the [Breadcrumb] to the Sentry scope.
Event(Event<'static>)
Captures the [sentry_core::protocol::Event] to Sentry.