Expand description
Track and report errors, exceptions and messages from your Rust application to Rollbar.
Re-exports§
pub extern crate backtrace;
Macros§
- report_
error - Report an error. Any type that implements
error::Error
is accepted. - report_
error_ message - Report an error message. Any type that implements
fmt::Display
is accepted. - report_
message - Send a plain text message to Rollbar with severity level
INFO
. - report_
panics - Set a global hook for the
panic
s your application could raise.
Structs§
- Client
- The access point to the library.
- Frame
Builder - Builder for a frame. A collection of frames identifies a stack trace.
- Report
Builder - Builder for a generic request to Rollbar.
- Report
Error Builder - Builder specialized for reporting errors.
- Report
Message Builder - Builder specialized for reporting messages.
- Response
Status - Wrapper for
hyper::StatusCode
.
Enums§
- Level
- Variants for setting the severity level.
If not specified, the default value is
ERROR
.