[][src]Crate bugsalot

Modules

debugger

APIs for interacting with native debuggers for the current process.

Macros

bug

Reports a bug by logging/breaking. Unlike panic!(...) this is nonfatal and continuable.

expect

Unwraps Options and Results, logging/breaking on errors, but unlike a.expect("msg") this is nonfatal and continuable.

unwrap

Unwraps Options and Results, logging/breaking on errors, but unlike a.unwrap() this is nonfatal and continuable.