usecrate::time::date::Date;/// # `DayCount`
////// Day count convention trait.
pubtraitDayCount{/// Calculates the number of days between two dates using the day count convention.
////// # Arguments
/// * `start` - The start date
/// * `end` - The end date
fnday_count(start: Date, end: Date)->i64;/// Calculates the fraction of a year between two dates using the day count convention.
////// # Arguments
/// * `start` - The start date
/// * `end` - The end date
fnyear_fraction(start: Date, end: Date)->f64;}