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
/// Struct which holds the data required to populate the `app` key of the
/// BugSnag session API payload.
///
/// ```
/// use lemon_bugsnag_rs::session::payload::{App, AppBuilder};
/// ```
pub use App;
pub use AppBuilder;
/// Struct which holds the data required to populate the `device` key of the
/// BugSnag session API payload.
///
/// ```
/// use lemon_bugsnag_rs::session::payload::device::{
/// Device, DeviceBuilder,
/// RuntimeVersion, RuntimeVersionBuilder
/// };
/// ```
/// Struct which holds the data required to populate the `notifier` key of the
/// BugSnag session API payload.
///
/// ```
/// use lemon_bugsnag_rs::session::payload::notifier::{Notifier, NotifierBuilder};
/// ```
/// Struct which holds the data for the BugSnag session API payload.
///
/// ```
/// // Not public. Used only within the crate.
/// # #[cfg(norun)]
/// use crate::session::payload::Payload;
/// ```
pub
pub use Payload;
/// Struct which holds the data required to populate the `session` key of the
/// BugSnag session API payload.
///
/// ```
/// use lemon_bugsnag_rs::session::payload::session_counts::session_count::{
/// SessionCount, SessionCountBuilder
/// };
/// ```
/// Struct which holds the data required to populate the `session` key of the
/// BugSnag session API payload.
///
/// ```
/// use lemon_bugsnag_rs::session::payload::sessions::session::{Session, SessionBuilder};
/// ```