From 6223ad6d528db00be469aa64fb4273e9838bb50f Mon Sep 17 00:00:00 2001 From: sharkdp Date: Wed, 22 Aug 2018 22:36:59 +0200 Subject: [PATCH] Document Config struct --- src/app.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app.rs b/src/app.rs index b909b74e..1a5c973c 100644 --- a/src/app.rs +++ b/src/app.rs @@ -32,6 +32,9 @@ pub struct Config<'a> { /// The character width of the terminal pub term_width: usize, + /// Whether or not the terminal is interactive + pub interactive_output: bool, + /// Whether or not the output should be colorized pub colored_output: bool,