lemon_bugsnag_rs 0.1.2

A library for interacting with the BugSnag error-reporting and sessions APIs.
Documentation
/// Contains structs for ureq sync session client builder.
///
/// # Example imports
/// ```
/// use lemon_bugsnag_rs::session::ureq::builder::{
///     blocking::ClientBuilderUreqSessionSync
/// };
/// ```
#[cfg_attr(docsrs, doc(cfg(feature = "sync")))]
#[cfg(feature = "sync")]
pub mod builder;
/// Contains structs for ureq sync session client.
///
/// # Example imports
/// ```
/// use lemon_bugsnag_rs::session::ureq::client::{
///     blocking::UreqSessionSync
/// };
/// ```
pub mod client;