pub struct Style {
pub container: Style,
pub vertical_rail: Rail,
pub horizontal_rail: Rail,
pub gap: Option<Background>,
pub auto_scroll: AutoScroll,
}Expand description
The appearance of a scrollable.
Fields§
§container: StyleThe container::Style of a scrollable.
vertical_rail: RailThe vertical Rail appearance.
horizontal_rail: RailThe horizontal Rail appearance.
gap: Option<Background>The Background of the gap between a horizontal and vertical scrollbar.
auto_scroll: AutoScrollThe appearance of the AutoScroll overlay.
Trait Implementations§
impl Copy for Style
impl StructuralPartialEq for Style
Auto Trait Implementations§
impl Freeze for Style
impl RefUnwindSafe for Style
impl Send for Style
impl Sync for Style
impl Unpin for Style
impl UnsafeUnpin for Style
impl UnwindSafe for Style
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more