pub struct GanttConfig {
pub first_day_of_week: String,
pub fiscal_year_begins: String,
pub holidays: Vec<Value>,
pub hours_in_working_day: f64,
pub primary_heading: Heading,
pub secondary_heading: Heading,
pub working_days: Vec<String>,
}
Fields§
§first_day_of_week: String
§fiscal_year_begins: String
§holidays: Vec<Value>
§hours_in_working_day: f64
§primary_heading: Heading
§secondary_heading: Heading
§working_days: Vec<String>
Trait Implementations§
Source§impl Clone for GanttConfig
impl Clone for GanttConfig
Source§fn clone(&self) -> GanttConfig
fn clone(&self) -> GanttConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GanttConfig
impl Debug for GanttConfig
Source§impl Default for GanttConfig
impl Default for GanttConfig
Source§fn default() -> GanttConfig
fn default() -> GanttConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GanttConfig
impl<'de> Deserialize<'de> for GanttConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GanttConfig
impl PartialEq for GanttConfig
Source§impl Serialize for GanttConfig
impl Serialize for GanttConfig
impl StructuralPartialEq for GanttConfig
Auto Trait Implementations§
impl Freeze for GanttConfig
impl RefUnwindSafe for GanttConfig
impl Send for GanttConfig
impl Sync for GanttConfig
impl Unpin for GanttConfig
impl UnwindSafe for GanttConfig
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