rat_widget/pager/
pager_style.rsuse crate::_private::NonExhaustive;
use ratatui::prelude::Style;
use ratatui::widgets::Block;
#[derive(Debug, Clone)]
pub struct PagerStyle {
pub style: Style,
pub nav: Option<Style>,
pub divider: Option<Style>,
pub title: Option<Style>,
pub block: Option<Block<'static>>,
pub non_exhaustive: NonExhaustive,
}
impl Default for PagerStyle {
fn default() -> Self {
Self {
style: Default::default(),
nav: None,
divider: None,
title: None,
block: None,
non_exhaustive: NonExhaustive,
}
}
}