lemon_bugsnag_rs 0.1.2

A library for interacting with the BugSnag error-reporting and sessions APIs.
Documentation
/// Contains structs and impls for communicating with the BugSnag
/// error-reporting API.
///
/// ```
/// use lemon_bugsnag_rs::error::error_client_builder::ErrorClientBuilder;
/// ```
pub mod error_client_builder;
/// 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;
/// ```
pub mod 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
/// };
/// ```
#[cfg_attr(docsrs, doc(cfg(feature = "reqwest")))]
#[cfg(feature = "reqwest")]
pub mod reqwest;
/// 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
/// };
/// ```
#[cfg_attr(docsrs, doc(cfg(feature = "ureq")))]
#[cfg(feature = "ureq")]
pub mod ureq;