pub enum Variable {
Show 14 variants
Int8(FmiInt8),
UInt8(FmiUInt8),
Int16(FmiInt16),
UInt16(FmiUInt16),
Int32(FmiInt32),
UInt32(FmiUInt32),
Int64(FmiInt64),
UInt64(FmiUInt64),
Float32(FmiFloat32),
Float64(FmiFloat64),
Boolean(FmiBoolean),
String(FmiString),
Binary(FmiBinary),
Clock(FmiClock),
}Variants§
Int8(FmiInt8)
UInt8(FmiUInt8)
Int16(FmiInt16)
UInt16(FmiUInt16)
Int32(FmiInt32)
UInt32(FmiUInt32)
Int64(FmiInt64)
UInt64(FmiUInt64)
Float32(FmiFloat32)
Float64(FmiFloat64)
Boolean(FmiBoolean)
String(FmiString)
Binary(FmiBinary)
Clock(FmiClock)
Trait Implementations§
impl StructuralPartialEq for Variable
Auto Trait Implementations§
impl Freeze for Variable
impl RefUnwindSafe for Variable
impl Send for Variable
impl Sync for Variable
impl Unpin for Variable
impl UnwindSafe for Variable
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