casper-client 5.0.1

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