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
/// Contains structs and impls for communicating with the BugSnag
/// error-reporting API.
///
/// ```
/// use lemon_bugsnag_rs::error::error_client_builder::ErrorClientBuilder;
/// ```
/// Contains the fields that are submitted to the BugSnag API as part of the
/// error reporting payload.
///
/// ```
/// // Only available from within this crate and not intended to be created
/// // by the users of the library.
/// #[cfg(norun)]
/// use lemon_bugsnag_rs::error::payload::Payload;
/// ```
/// Contains builders and clients for the Reqwest networking back-end.
/// See [builder](crate::error::reqwest::builder) and
/// [client](crate::error::reqwest::client) for additional details.
///
/// ```
/// use lemon_bugsnag_rs::error::reqwest::{
/// builder,
/// client
/// };
/// ```
/// Contains builders and clients for the Ureq networking back-end.
/// See [builder](crate::error::ureq::builder) and
/// [client](crate::error::ureq::client) for additional details.
///
/// ```
/// use lemon_bugsnag_rs::error::ureq:: {
/// builder,
/// client
/// };
/// ```