pub trait StyleSheet {
    type Style: Default;

    fn picked_split(&self, style: &Self::Style) -> Option<Line>;
    fn hovered_split(&self, style: &Self::Style) -> Option<Line>;
}
Expand description

A set of rules that dictate the style of a container.

Required Associated Types§

The supported style of the StyleSheet.

Required Methods§

The Line to draw when a split is picked.

The Line to draw when a split is hovered.

Implementors§