From 87313aebb993e09f639627fe34fc4a582b75e83e Mon Sep 17 00:00:00 2001 From: Avril Date: Fri, 14 Mar 2025 15:44:45 +0000 Subject: [PATCH] Started 1.0 prerelease redesign. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fortune for termprogress's current commit: Future blessing − 末吉 --- Cargo.toml | 2 +- src/inter.rs | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 62605c8..ca10182 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "termprogress" description = "A terminal progress bar renderer with status and spinners" license = "GPL-3.0-or-later" # TODO: After full interface update & correction, bump version to `0.11.0` instead or a revision. -version = "0.10.0-r1" +version = "1.0.0-r0-pre" authors = ["Avril "] edition = "2018" diff --git a/src/inter.rs b/src/inter.rs index b904823..56ef521 100644 --- a/src/inter.rs +++ b/src/inter.rs @@ -138,6 +138,57 @@ where T: Spinner + ?Sized } } + +impl Display for std::convert::Infallible +{ + #[inline] fn refresh(&self) + { + + } + #[inline] fn blank(&self) + { + + } + #[inline] fn println(&self, _: &str) + { + + } + #[inline] fn eprintln(&self, _: &str) + { + + } + #[inline] fn get_title(&self) -> &str + { + match *self {} + } + #[inline] fn set_title(&mut self, _: &str) + { + } + + #[inline] fn update_dimensions(&mut self, _: usize) + { + + } +} + +impl ProgressBar for std::convert::Infallible +{ + + #[inline] fn set_progress(&mut self, _: f64) + { + + } + #[inline] fn get_progress(&self) -> f64 + { + match *self {} + } +} + +impl Spinner for std::convert::Infallible +{ + #[inline] fn bump(&mut self){} +} + #[cfg(nightly)] mod never { use super::*;