casper_client/verbosity.rs
1/// The level of verbosity of the output to stdout.
2#[derive(Clone, Copy, Eq, PartialEq, Debug)]
3pub enum Verbosity {
4 /// Minimal output.
5 Low = 0,
6 /// Moderate amount of output, with any long hex strings shortened to a string indicating the
7 /// character count of the string.
8 Medium = 1,
9 /// High level of output, with all fields displayed in full.
10 High = 2,
11}