pub struct ClockType {
pub name: String,
pub description: Option<String>,
pub annotations: Option<Fmi3Annotations>,
pub can_be_deactivated: Option<bool>,
pub priority: Option<u32>,
pub interval_variability: Option<String>,
pub interval_decimal: Option<f64>,
pub shift_decimal: Option<f64>,
pub supports_fraction: Option<bool>,
pub resolution: Option<u64>,
pub interval_counter: Option<u64>,
pub shift_counter: Option<u64>,
}Fields§
§name: String§description: Option<String>§annotations: Option<Fmi3Annotations>§can_be_deactivated: Option<bool>§priority: Option<u32>§interval_variability: Option<String>§interval_decimal: Option<f64>§shift_decimal: Option<f64>§supports_fraction: Option<bool>§resolution: Option<u64>§interval_counter: Option<u64>§shift_counter: Option<u64>Trait Implementations§
impl StructuralPartialEq for ClockType
Auto Trait Implementations§
impl Freeze for ClockType
impl RefUnwindSafe for ClockType
impl Send for ClockType
impl Sync for ClockType
impl Unpin for ClockType
impl UnwindSafe for ClockType
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> 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