pub trait PanelStyles {
// Required methods
fn muted_style(&self) -> Style;
fn title_style(&self) -> Style;
fn border_active_style(&self) -> Style;
fn divider_style(&self) -> Style;
}Expand description
Extended style methods for panels and visual hierarchy.
Required Methods§
Sourcefn muted_style(&self) -> Style
fn muted_style(&self) -> Style
Style for muted/secondary content.
Sourcefn title_style(&self) -> Style
fn title_style(&self) -> Style
Style for panel titles.
Sourcefn border_active_style(&self) -> Style
fn border_active_style(&self) -> Style
Style for active/focused borders.
Sourcefn divider_style(&self) -> Style
fn divider_style(&self) -> Style
Style for dividers between sections.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".