lemon_bugsnag_rs 0.1.2

A library for interacting with the BugSnag error-reporting and sessions APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Contains the [SessionCount]
/// and [SessionCountBuilder]
///
/// ```
/// use lemon_bugsnag_rs::session::payload::session_counts::session_count::{
///     SessionCount,
///     SessionCountBuilder
/// };
/// ```
pub mod session_count;
pub use session_count::SessionCount;
#[cfg(feature = "optional-builders")]
pub use session_count::SessionCountBuilder;