lemon_bugsnag_rs 0.1.2

A library for interacting with the BugSnag error-reporting and sessions APIs.
Documentation
mod payload;
pub(crate) use payload::Payload;
/// Struct which holds the data required to populate the `events`
/// key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::events::{
///   app,
///   breadcrumb,
///   device,
///   enums,
///   event,
///   exception,
///   feature_flag,
///   request,
///   runtime_version,
///   session,
///   severity_reason_attribute,
///   severity_reason,
///   stack_trace_code,
///   stack_trace,
///   thread,
///   user
/// };
/// ```
pub mod events;
/// Struct which holds the data required to populate the `notifier`
/// key of the BugSnag error-reporting API payload.
///
/// ```
/// use lemon_bugsnag_rs::error::payload::notifier::{
///   dependency,
///   notifier
/// };
/// ```
pub mod notifier;