rmw_err 0.0.5

utils for log err
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 3 items with examples
  • Size
  • Source code size: 3.13 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 248.93 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • rmw-lib/rmw_err
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • gcxfd

rmw_err

utils for log err

cargo add rmw_err --rename err then

use std::fs::File;

fn main() {
  if let Ok(_) = err::ok!(File::open("/not_exist")) {
    err::log!(Err::<(), _>("test"));
  }
}