pub struct BarChartConfig {
pub color: Option<String>,
pub show_labels: bool,
pub show_values: bool,
pub show_grid: bool,
pub title: Option<String>,
}Expand description
Configuration for bar chart rendering.
Fields§
§color: Option<String>§show_labels: bool§show_values: bool§show_grid: bool§title: Option<String>Auto Trait Implementations§
impl Freeze for BarChartConfig
impl RefUnwindSafe for BarChartConfig
impl Send for BarChartConfig
impl Sync for BarChartConfig
impl Unpin for BarChartConfig
impl UnsafeUnpin for BarChartConfig
impl UnwindSafe for BarChartConfig
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