pub struct FloatVariableAlias {
pub name: String,
pub description: Option<String>,
pub display_unit: Option<String>,
}Expand description
Alias for float variables (Float32 and Float64) with additional displayUnit attribute
Fields§
§name: String§description: Option<String>§display_unit: Option<String>Trait Implementations§
Source§impl Debug for FloatVariableAlias
impl Debug for FloatVariableAlias
Source§impl Default for FloatVariableAlias
impl Default for FloatVariableAlias
Source§fn default() -> FloatVariableAlias
fn default() -> FloatVariableAlias
Returns the “default value” for a type. Read more
Source§impl PartialEq for FloatVariableAlias
impl PartialEq for FloatVariableAlias
Source§impl<'__input> XmlRead<'__input> for FloatVariableAlias
impl<'__input> XmlRead<'__input> for FloatVariableAlias
Source§impl XmlWrite for FloatVariableAlias
impl XmlWrite for FloatVariableAlias
impl StructuralPartialEq for FloatVariableAlias
Auto Trait Implementations§
impl Freeze for FloatVariableAlias
impl RefUnwindSafe for FloatVariableAlias
impl Send for FloatVariableAlias
impl Sync for FloatVariableAlias
impl Unpin for FloatVariableAlias
impl UnwindSafe for FloatVariableAlias
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