pub struct GanttTheme {
pub critical_color: String,
pub normal_color: String,
pub milestone_color: String,
pub container_color: String,
pub background_color: String,
pub grid_color: String,
pub text_color: String,
pub header_bg: String,
pub arrow_color: String,
pub highlight_color: String,
}Expand description
Color theme for the Gantt chart
Fields§
§critical_color: String§normal_color: String§milestone_color: String§container_color: String§background_color: String§grid_color: String§text_color: String§header_bg: String§arrow_color: String§highlight_color: StringImplementations§
Trait Implementations§
Source§impl Clone for GanttTheme
impl Clone for GanttTheme
Source§fn clone(&self) -> GanttTheme
fn clone(&self) -> GanttTheme
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GanttTheme
impl Debug for GanttTheme
Auto Trait Implementations§
impl Freeze for GanttTheme
impl RefUnwindSafe for GanttTheme
impl Send for GanttTheme
impl Sync for GanttTheme
impl Unpin for GanttTheme
impl UnsafeUnpin for GanttTheme
impl UnwindSafe for GanttTheme
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