pub trait BackgroundedExt: BackgroundedMut + Sized {
// Provided methods
fn bg(self, color: impl Into<String>) -> Self { ... }
fn bg_none(self) -> Self { ... }
}Expand description
Builder API for background.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".