Enum bdrck_params::io::WriterImpl [] [src]

pub enum WriterImpl {
    Stdout,
    Stderr,
    Info,
    Noop,
}

The various fmt::Write implementations bdrck_params can use to e.g. print out program help information. By default, bdrck_params uses Info. This can be changed globally via set_writer_impl.

Variants

Print information to stdout.

Print information to stderr.

Log information using info!().

Silently discard any output information.

Trait Implementations

impl Clone for WriterImpl
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more