pub enum JoinRule {
JoinHolidays,
JoinBusinessDays,
}Expand description
How to combine the business days of several calendars.
Variants§
JoinHolidays
A date is a business day only if it is a business day in every calendar (the union of holidays). Standard for multi-currency curves.
JoinBusinessDays
A date is a business day if it is a business day in any calendar (the intersection of holidays).
Trait Implementations§
impl Copy for JoinRule
impl Eq for JoinRule
impl StructuralPartialEq for JoinRule
Auto Trait Implementations§
impl Freeze for JoinRule
impl RefUnwindSafe for JoinRule
impl Send for JoinRule
impl Sync for JoinRule
impl Unpin for JoinRule
impl UnsafeUnpin for JoinRule
impl UnwindSafe for JoinRule
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