lemon_bugsnag_rs 0.1.2

A library for interacting with the BugSnag error-reporting and sessions APIs.
Documentation
/// Provides the [blocking](crate::session::reqwest::builder::blocking::ClientBuilderReqwestSessionSync)
/// and [non-blocking](crate::session::reqwest::builder::non_blocking::ClientBuilderReqwestSessionAsync)
/// client builders, as well as the decider struct that allows you to choose
/// between them.
///
/// ```
/// use lemon_bugsnag_rs::session::reqwest::builder::{
///     blocking
///     , decider
///     , non_blocking
/// };
/// ```
pub mod builder;
/// Provides the [blocking](crate::session::reqwest::client::blocking::ReqwestSessionSync)
/// and [non-blocking](crate::session::reqwest::client::non_blocking::ReqwestSessionAsync)
/// network clients for talking to the BugSnag sessions API.
///
/// ```
/// use lemon_bugsnag_rs::session::reqwest::client::{
///     blocking
///     , non_blocking
/// };
/// ```
pub mod client;