pub enum IntervalVariability {
Constant,
Fixed,
Tunable,
Changing,
Countdown,
Triggered,
}Expand description
IntervalVariability declares the Clock type
See https://fmi-standard.org/docs/3.0.1/#table-overview-clocks
Variants§
Constant
Fixed
Tunable
Changing
Countdown
Triggered
IntervalVariability must be set to Triggered for Clocks with causality = Output
Trait Implementations§
Source§impl Clone for IntervalVariability
impl Clone for IntervalVariability
Source§fn clone(&self) -> IntervalVariability
fn clone(&self) -> IntervalVariability
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 IntervalVariability
impl Debug for IntervalVariability
Source§impl Default for IntervalVariability
impl Default for IntervalVariability
Source§fn default() -> IntervalVariability
fn default() -> IntervalVariability
Returns the “default value” for a type. Read more
Source§impl Display for IntervalVariability
impl Display for IntervalVariability
Source§impl FromStr for IntervalVariability
impl FromStr for IntervalVariability
Source§impl PartialEq for IntervalVariability
impl PartialEq for IntervalVariability
impl Copy for IntervalVariability
impl StructuralPartialEq for IntervalVariability
Auto Trait Implementations§
impl Freeze for IntervalVariability
impl RefUnwindSafe for IntervalVariability
impl Send for IntervalVariability
impl Sync for IntervalVariability
impl Unpin for IntervalVariability
impl UnwindSafe for IntervalVariability
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more