inquire 0.9.4

inquire is a library for building interactive prompts on terminals
Documentation
use chrono::NaiveDate;

use crate::DateSelect;

/// Configuration settings used in the execution of a DateSelectPrompt.
#[derive(Copy, Clone, Debug)]
pub struct DateSelectConfig {
    /// Min date allowed to be selected.
    pub min_date: Option<NaiveDate>,

    /// Max date allowed to be selected.
    pub max_date: Option<NaiveDate>,

    /// Weekday to start the week on.
    pub week_start: chrono::Weekday,
}

impl From<&DateSelect<'_>> for DateSelectConfig {
    fn from(value: &DateSelect<'_>) -> Self {
        Self {
            min_date: value.min_date,
            max_date: value.max_date,
            week_start: value.week_start,
        }
    }
}