pub struct EnumerationItem {
pub name: String,
pub value: i64,
pub description: Option<String>,
pub annotations: Option<Fmi3Annotations>,
}Fields§
§name: String§value: i64§description: Option<String>§annotations: Option<Fmi3Annotations>Trait Implementations§
Source§impl Debug for EnumerationItem
impl Debug for EnumerationItem
Source§impl PartialEq for EnumerationItem
impl PartialEq for EnumerationItem
Source§impl<'__input> XmlRead<'__input> for EnumerationItem
impl<'__input> XmlRead<'__input> for EnumerationItem
Source§impl XmlWrite for EnumerationItem
impl XmlWrite for EnumerationItem
impl StructuralPartialEq for EnumerationItem
Auto Trait Implementations§
impl Freeze for EnumerationItem
impl RefUnwindSafe for EnumerationItem
impl Send for EnumerationItem
impl Sync for EnumerationItem
impl Unpin for EnumerationItem
impl UnwindSafe for EnumerationItem
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