stdmacros 0.1.1

Simple STDOUT and STDERR utility macros.
Documentation
  • Coverage
  • 0%
    0 out of 5 items documented0 out of 0 items with examples
  • Size
  • Source code size: 2.59 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.33 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • jD91mZM2

stdmacros

stdmacros is a simple Rust library that gives you helper macros for STDOUT and STDERR, similarly to print.

Pros:

  • Skip formatter you don't use.
  • Print to STDERR easily.

Cons:

  • Uses a library for such a basic task...

Usage

Assuming you know how to actually install the crate,
import it, but you must also specify #[macro_use].
e.g.

#[macro_use]
extern crate stdmacros