pub enum SimulationInterval {
Hourly,
Daily,
Weekly,
Monthly,
}
Expand description
Interval type for the simulation. This is used to determine the duration of each interval in the simulation.
Variants§
Trait Implementations§
Source§impl Clone for SimulationInterval
impl Clone for SimulationInterval
Source§fn clone(&self) -> SimulationInterval
fn clone(&self) -> SimulationInterval
Returns a duplicate of the value. Read more
1.0.0 · 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 SimulationInterval
impl Debug for SimulationInterval
Source§impl PartialEq for SimulationInterval
impl PartialEq for SimulationInterval
impl Eq for SimulationInterval
impl StructuralPartialEq for SimulationInterval
Auto Trait Implementations§
impl Freeze for SimulationInterval
impl RefUnwindSafe for SimulationInterval
impl Send for SimulationInterval
impl Sync for SimulationInterval
impl Unpin for SimulationInterval
impl UnwindSafe for SimulationInterval
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