1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
/// Struct which holds the data required to populate the `events -> app` key
/// of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{App, AppBuilder};
/// ```
pub use App;
pub use AppBuilder;
/// Struct which holds the data required to populate the `events -> breadcrumb`
/// key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{
/// Breadcrumb,
/// BreadcrumbBuilder
/// };
/// ```
pub use Breadcrumb;
pub use BreadcrumbBuilder;
/// Struct which holds the data required to populate the `events -> device`
/// key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{Device, DeviceBuilder};
/// ```
pub use Device;
pub use DeviceBuilder;
/// Struct which holds the enums required for various fields for the BugSnag
/// error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::enums::{
/// BinaryArch,
/// BreadcrumbType,
/// RuntimeType,
/// Severity,
/// SeverityReasonType
/// };
/// ```
pub use ;
/// Struct and builder for error payload [crate::error::payload::events::Event]s.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{Event, EventBuilder};
/// ```
pub use Event;
pub use EventBuilder;
/// Struct which holds the data required to populate the `events -> exceptions`
/// key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{Exception, ExceptionBuilder};
/// ```
pub use Exception;
pub use ExceptionBuilder;
/// Struct which holds the data required to populate the `events ->
/// feature_flag` key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::FeatureFlag;
/// ```
pub use FeatureFlag;
/// Struct which holds the data required to populate the `events -> request` key
/// of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{Request, RequestBuilder};
/// ```
pub use Request;
pub use RequestBuilder;
/// Struct which holds the data required to populate the `events -> device ->
/// runtime_version` key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{RuntimeVersion, RuntimeVersionBuilder};
/// ```
pub use RuntimeVersion;
pub use RuntimeVersionBuilder;
/// Struct which holds the data required to populate the `events -> session` key
/// of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{Session, SessionBuilder};
/// ```
pub use Session;
pub use SessionBuilder;
/// Struct which holds the data required to populate the `events ->
/// severity_reason` key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{
/// SeverityReason,
/// SeverityReasonBuilder
/// };
/// ```
pub use SeverityReason;
pub use SeverityReasonBuilder;
/// Struct which holds the data required to populate the `events ->
/// severity_reason -> attributes` key of the BugSnag error-reporting API
/// payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{
/// SeverityReasonAttribute,
/// SeverityReasonAttributeBuilder
/// };
/// ```
pub use SeverityReasonAttribute;
pub use SeverityReasonAttributeBuilder;
/// Struct which holds the data required to populate the `events -> stack_trace`
/// key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{
/// StackTrace,
/// StackTraceBuilder
/// };
/// ```
pub use StackTrace;
pub use StackTraceBuilder;
/// Struct which holds the data required to populate the `events -> stack_trace
/// -> code` key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{
/// StackTraceCode,
/// StackTraceCodeBuilder
/// };
/// ```
pub use StackTraceCode;
pub use StackTraceCodeBuilder;
/// Struct which holds the data required to populate the `events -> threads`
/// key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{
/// Thread,
/// ThreadBuilder
/// };
/// ```
pub use Thread;
pub use ThreadBuilder;
/// Struct which holds the data required to populate the `events -> user`
/// key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{
/// User,
/// UserBuilder
/// };
/// ```
pub use User;
pub use UserBuilder;