From 15e40bf3d028b383afbf7251910a121807e0d1b1 Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Tue, 15 Feb 2022 14:01:15 +0000 Subject: Add headers support --- src/main.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index c1fe2ab..67c6541 100644 --- a/src/main.rs +++ b/src/main.rs @@ -18,6 +18,8 @@ struct Args { #[clap(short, long)] headers: bool, #[clap(short, long)] + all_headers: bool, + #[clap(short, long)] body: bool, #[clap(short, long)] raw: bool, @@ -26,7 +28,7 @@ struct Args { impl Args { pub fn print_headers(&self) -> bool { - self.headers || !self.body + self.headers || self.all_headers || !self.body } pub fn print_body(&self) -> bool { @@ -36,6 +38,10 @@ impl Args { pub fn raw_body(&self) -> bool { self.raw } + + pub fn req_headers(&self) -> bool { + self.all_headers + } } fn main() { -- cgit v1.2.3