V

Type Alias V 

Source
pub type V = Verbosity;
Expand description

Type alias for Verbosity to provide a shorter name for convenience

Aliased Type§

pub enum V {
    Quieter = 0,
    Quiet = 1,
    Normal = 2,
    Verbose = 3,
    Debug = 4,
}

Variants§

§

Quieter = 0

Minimal output, suitable for piping to another process

§

Quiet = 1

Less detailed output

§

Normal = 2

Standard output level

§

Verbose = 3

More detailed output

§

Debug = 4

Maximum detail for debugging

Implementations§

Source§

impl V

Source

pub const QQ: Self = Self::Quieter

Shorthand for Verbosity::Quieter

Source

pub const Q: Self = Self::Quiet

Shorthand for Verbosity::Quiet

Source

pub const N: Self = Self::Normal

Shorthand for Verbosity::Normal

Source

pub const V: Self = Self::Verbose

Shorthand for Verbosity::Verbose

Source

pub const VV: Self = Self::Debug

Shorthand for Verbosity::Debug

Source

pub const D: Self = Self::Debug

Shorthand for Verbosity::Debug