pub trait ProgressBarThemePartialExt {
// Required methods
fn color(self, color: impl Into<Color>) -> Self;
fn background(self, background: impl Into<Color>) -> Self;
fn progress_background(self, progress_background: impl Into<Color>) -> Self;
fn height(self, height: f32) -> Self;
}Required Methods§
fn color(self, color: impl Into<Color>) -> Self
fn background(self, background: impl Into<Color>) -> Self
fn progress_background(self, progress_background: impl Into<Color>) -> Self
fn height(self, height: f32) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".