pub struct Float64Type {
pub name: String,
pub description: Option<String>,
pub annotations: Option<Fmi3Annotations>,
pub quantity: Option<String>,
pub unit: Option<String>,
pub display_unit: Option<String>,
pub relative_quantity: Option<bool>,
pub unbounded: Option<bool>,
pub min: Option<f64>,
pub max: Option<f64>,
pub nominal: Option<f64>,
}Fields§
§name: String§description: Option<String>§annotations: Option<Fmi3Annotations>§quantity: Option<String>§unit: Option<String>§display_unit: Option<String>§relative_quantity: Option<bool>§unbounded: Option<bool>§min: Option<f64>§max: Option<f64>§nominal: Option<f64>Trait Implementations§
Source§impl BaseTypeTrait for Float64Type
impl BaseTypeTrait for Float64Type
Source§impl Debug for Float64Type
impl Debug for Float64Type
Source§impl Default for Float64Type
impl Default for Float64Type
Source§fn default() -> Float64Type
fn default() -> Float64Type
Returns the “default value” for a type. Read more
Source§impl PartialEq for Float64Type
impl PartialEq for Float64Type
Source§impl<'__input> XmlRead<'__input> for Float64Type
impl<'__input> XmlRead<'__input> for Float64Type
Source§impl XmlWrite for Float64Type
impl XmlWrite for Float64Type
impl StructuralPartialEq for Float64Type
Auto Trait Implementations§
impl Freeze for Float64Type
impl RefUnwindSafe for Float64Type
impl Send for Float64Type
impl Sync for Float64Type
impl Unpin for Float64Type
impl UnwindSafe for Float64Type
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