pub enum VariableType {
Show 13 variants
FmiFloat32,
FmiFloat64,
FmiInt8,
FmiUInt8,
FmiInt16,
FmiUInt16,
FmiInt32,
FmiUInt32,
FmiInt64,
FmiUInt64,
FmiBoolean,
FmiString,
FmiBinary,
}
Expand description
An enumeration that defines the type of a variable.
Variants§
FmiFloat32
FmiFloat64
FmiInt8
FmiUInt8
FmiInt16
FmiUInt16
FmiInt32
FmiUInt32
FmiInt64
FmiUInt64
FmiBoolean
FmiString
FmiBinary
Trait Implementations§
Source§impl Debug for VariableType
impl Debug for VariableType
Source§impl PartialEq for VariableType
impl PartialEq for VariableType
impl StructuralPartialEq for VariableType
Auto Trait Implementations§
impl Freeze for VariableType
impl RefUnwindSafe for VariableType
impl Send for VariableType
impl Sync for VariableType
impl Unpin for VariableType
impl UnwindSafe for VariableType
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