relay_event_schema/protocol/
mod.rs

1//! Implements the sentry event protocol.
2
3mod base;
4mod breadcrumb;
5mod breakdowns;
6mod client_report;
7mod clientsdk;
8mod constants;
9mod contexts;
10mod debugmeta;
11mod device_class;
12mod event;
13mod exception;
14mod fingerprint;
15mod logentry;
16mod measurements;
17mod mechanism;
18mod metrics;
19mod metrics_summary;
20mod nel;
21mod ourlog;
22mod relay_info;
23mod replay;
24mod request;
25mod security_report;
26mod session;
27mod span;
28mod stacktrace;
29mod tags;
30mod templateinfo;
31mod thread;
32mod transaction;
33mod types;
34mod user;
35mod user_report;
36mod utils;
37
38#[doc(inline)]
39pub use relay_base_schema::{events::*, spans::*};
40
41pub use self::breadcrumb::*;
42pub use self::breakdowns::*;
43pub use self::client_report::*;
44pub use self::clientsdk::*;
45pub use self::constants::*;
46pub use self::contexts::*;
47pub use self::debugmeta::*;
48pub use self::device_class::*;
49pub use self::event::*;
50pub use self::exception::*;
51pub use self::fingerprint::*;
52pub use self::logentry::*;
53pub use self::measurements::*;
54pub use self::mechanism::*;
55pub use self::metrics::*;
56pub use self::metrics_summary::*;
57pub use self::nel::*;
58pub use self::ourlog::*;
59pub use self::relay_info::*;
60pub use self::replay::*;
61pub use self::request::*;
62pub use self::security_report::*;
63pub use self::session::*;
64pub use self::span::*;
65pub use self::stacktrace::*;
66pub use self::tags::*;
67pub use self::templateinfo::*;
68pub use self::thread::*;
69pub use self::transaction::*;
70pub use self::types::*;
71pub use self::user::*;
72pub use self::user_report::*;