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