lemon_bugsnag_rs 0.1.2

A library for interacting with the BugSnag error-reporting and sessions APIs.
Documentation
/// Contains the [blocking](crate::error::reqwest::builder::blocking::ClientBuilderReqwestErrorSync),
/// [non-blocking](crate::error::reqwest::builder::non_blocking::ClientBuilderReqwestErrorAsync), and
/// [decider](crate::error::reqwest::builder::decider::ReqwestErrorDecider) modules,
/// allowing the user to select whether they want to use synchronous or
/// asynchronous networking operations for sending data to the BugSnag API.
///
/// ```
/// use lemon_bugsnag_rs::error::reqwest::builder::{
///     blocking,
///     decider,
///     non_blocking
/// };
/// ```
pub mod builder;
/// Contains the [blocking](crate::error::reqwest::client::blocking)
/// and [non_blocking](crate::error::reqwest::client::non_blocking) modules,
/// which contain, respectively, synchronous and asynchronous network client
/// structs for use in sending data to the BugSnag API.
///
/// ```
/// use lemon_bugsnag_rs::error::reqwest::client::{
///     blocking,
///     non_blocking
/// };
/// ```
pub mod client;